Exemplo n.º 1
0
 public ColorAjaxService(
     IApplicationRequestServices requestServices,
     ILogger <ColorAjaxService> logger,
     IInventoryAdminService inventoryService)
     : base(requestServices, logger)
 {
     InventoryService = inventoryService ?? throw new ArgumentNullException(nameof(inventoryService));
 }
Exemplo n.º 2
0
 public InventoryItemController(
     IApplicationLocale applicationLocale,
     IDomainMicroService domainMicroService,
     IInventoryAdminService inventoryAdminService)
     : base(
         applicationLocale,
         domainMicroService)
 {
     InventoryAdminService = inventoryAdminService ?? throw new ArgumentNullException(nameof(inventoryAdminService));
 }