MusicianAgreementController.php
856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace App\Http\Controllers\Musician;
use App\Http\Controllers\Controller;
use App\Services\MusicianAgreementService;
/**
 * Class MusicianAgreementController
 * @package App\Http\Controllers\Musician
 */
class MusicianAgreementController extends Controller
{
    /**
     * @var MusicianAgreementService
     */
    protected $musicianAgreementService;
    /**
     * MusicianAgreementController constructor.
     * @param MusicianAgreementService $musicianAgreementService
     */
    public function __construct(MusicianAgreementService $musicianAgreementService)
    {
        $this->musicianAgreementService = $musicianAgreementService;
    }
    /**
     * 我的合约列表
     * @return \Illuminate\Http\JsonResponse
     */
    public function list()
    {
        return $this->musicianAgreementService->agreementList();
    }
}