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