예제 #1
0
 public ArtistController(IArtistServices artistService, IMapper mapper,
                         IDistributedCache distributedCache,
                         ILogger <ArtistController> logger
                         )
 {
     _mapper           = mapper;
     _artistService    = artistService;
     _distributedCache = distributedCache;
     _logger           = logger;
 }
예제 #2
0
 public ArtistController(IArtistServices artistServices)
 {
     _artistService = artistServices;
 }