public AirBagFileService(IUnitOfWork uow, IBlobFileService fileService, ILogger <AirBagFileService> logger)
 {
     _uow         = uow;
     _fileService = fileService;
     _logger      = logger;
 }
Ejemplo n.º 2
0
 public NewsController(INewsService service, IViewModelMapper mapper, IBlobFileService fileService)
 {
     _service     = service;
     _mapper      = mapper;
     _fileService = fileService;
 }
Ejemplo n.º 3
0
 public AirBagController(IAirBagService service, IViewModelMapper mapper, IBlobFileService fileService)
 {
     _service     = service;
     _mapper      = mapper;
     _fileService = fileService;
 }
Ejemplo n.º 4
0
 public ProductController(IProductService productService, IBlobFileService blobFileService)
 {
     _productService  = productService;
     _blobFileService = blobFileService;
 }