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