예제 #1
0
 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;
 }
예제 #3
0
 public FieldWorkerProductController(IFieldWorkerProductService fieldWorkerProductService, UserManager <AppUser> userManager) : base(userManager)
 {
     _fieldWorkerProductService = fieldWorkerProductService;
 }