Esempio n. 1
0
 public InventoryController(IStuffTypeService stuffTypeService)
 {
     _stuffTypeService = stuffTypeService;
 }
Esempio n. 2
0
 public InventoryService(IStuffTypeService stuffTypeService, IMapper mapper, ILogger <InventoryService> logger)
 {
     _stuffTypeService = stuffTypeService;
     _mapper           = mapper;
     _logger           = logger;
 }