public StorageExportController(IStorageExportService storageExportService, IProductService productService, IFieldWorkerProductService fieldWorkerProductService, UserManager <AppUser> userManager) : base(userManager) { _storageExportService = storageExportService; _productService = productService; _fieldWorkerProductService = fieldWorkerProductService; }
public VendingMachineProductController(IVendingMachineProductService vendingMachineProductService, IProductService productService, IFieldWorkerProductService fieldWorkerProductService, UserManager <AppUser> userManager) : base(userManager) { _vendingMachineProductService = vendingMachineProductService; _productService = productService; _fieldWorkerProductService = fieldWorkerProductService; }
public FieldWorkerProductController(IFieldWorkerProductService fieldWorkerProductService, UserManager <AppUser> userManager) : base(userManager) { _fieldWorkerProductService = fieldWorkerProductService; }