Пример #1
0
 public RecordController(IActionApiService actionApiService,
                         IDistributedCache cache,
                         IServiceService serviceService,
                         IMapper mapper)
 {
     _actionApiService = actionApiService;
     _cache            = cache;
     _serviceService   = serviceService;
     _mapper           = mapper;
 }
Пример #2
0
 public ServiceController(ILogger <ServiceController> logger,
                          IServiceService service,
                          IDistributedCache cache,
                          IActionApiService actionApiService,
                          IMapper mapper)
 {
     _logger           = logger;
     _service          = service;
     _mapper           = mapper;
     _cache            = cache;
     _actionApiService = actionApiService;
 }