1
0

ProfileService.php 206 B

12345678910111213141516
  1. <?php
  2. namespace App\Services;
  3. class ProfileService
  4. {
  5. public static function get($id)
  6. {
  7. return AccountService::get($id);
  8. }
  9. public static function del($id)
  10. {
  11. return AccountService::del($id);
  12. }
  13. }