2019-02-14 21:23:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
2021-07-27 00:47:40 +00:00
|
|
|
class ProfileService
|
|
|
|
{
|
2021-05-01 19:35:47 +00:00
|
|
|
public static function get($id)
|
2019-02-14 21:23:33 +00:00
|
|
|
{
|
2021-07-27 00:47:40 +00:00
|
|
|
return AccountService::get($id);
|
2019-02-14 21:23:33 +00:00
|
|
|
}
|
|
|
|
|
2021-07-27 00:47:40 +00:00
|
|
|
public static function del($id)
|
|
|
|
{
|
|
|
|
return AccountService::del($id);
|
|
|
|
}
|
2021-05-01 19:35:47 +00:00
|
|
|
}
|