예제 #1
0
 public BaseApiController(IArtistCatalogRepository repository)
 {
     _repository = repository;
 }
예제 #2
0
 public ArtistController(IArtistCatalogRepository repository, IHttpClientService httpClient) : base(repository)
 {
     this._httpClient = httpClient;
 }
예제 #3
0
 public HomeController(IArtistCatalogRepository repository)
 {
     _repository = repository;
 }