public CustomerController(ICustomerSearchService customerSearchService,
                           ICustomerPropertyService customerPropertyService,
                           ICustomerService customerService,
                           IExcelDataHaveColumnExporter dataExporter)
 {
     _customerSearchService   = customerSearchService;
     _customerService         = customerService;
     _customerPropertyService = customerPropertyService;
     _dataExporter            = dataExporter;
 }
Beispiel #2
0
 public EmployeeController(IEmployeeService EmployeeService,
                           IEmployeeSearchService EmployeeSearchService,
                           IEmployeeCategoryService EmployeeCategoryService,
                           IEmployeePropertyService EmployeePropertyService,
                           IExcelDataHaveColumnExporter dataExporter,
                           ICommandPipeProvider commandPipeProvider)
 {
     _employeeService         = EmployeeService;
     _employeeSearchService   = EmployeeSearchService;
     _employeeCategoryService = EmployeeCategoryService;
     _dataExporter            = dataExporter;
     _employeePropertyService = EmployeePropertyService;
     base.CommandPipeProvider = commandPipeProvider;
 }
 public GoodsController(IGoodsService goodsService,
                        IGoodsSearchService goodsSearchService,
                        IGoodsCategoryService goodsCategoryService,
                        IGoodsPropertyService goodsPropertyService,
                        IExcelDataHaveColumnExporter dataExporter,
                        ICommandPipeProvider commandPipeProvider)
 {
     _goodsService            = goodsService;
     _goodsSearchService      = goodsSearchService;
     _goodsCategoryService    = goodsCategoryService;
     _dataExporter            = dataExporter;
     _goodsPropertyService    = goodsPropertyService;
     base.CommandPipeProvider = commandPipeProvider;
 }
 public CustomerFinanceController(ICustomerFinanceService financeService,
                                  ICustomerFinanceSearchService financeSearchService,
                                  ICustomerFinanceCategoryService financeCategoryService,
                                  ICustomerSearchService customerSearchService,
                                  ICustomerFinanceWrapper[] financeWrappers,
                                  ICustomerFinancePropertySearchService propertySearchService,
                                  IExcelDataHaveColumnExporter dataExporter)
 {
     _financeService         = financeService;
     _financeSearchService   = financeSearchService;
     _financeCategoryService = financeCategoryService;
     _customerSearchService  = customerSearchService;
     _financeWrappers        = financeWrappers;
     _propertySearchService  = propertySearchService;
     _dataExporter           = dataExporter;
 }
Beispiel #5
0
 public StockController(IStockService stockService,
                        IStockSearchService stockSearchService,
                        IStockCategoryService stockCategoryService,
                        IStockPropertyService stockPropertyService,
                        IExcelDataHaveColumnExporter dataExporter,
                        ICommandPipeProvider commandPipeProvider,
                        IStockWrapper[] stockWrappers,
                        IGoodsSearchService goodsSearchService)
 {
     _stockService            = stockService;
     _stockSearchService      = stockSearchService;
     _stockCategoryService    = stockCategoryService;
     _dataExporter            = dataExporter;
     _stockPropertyService    = stockPropertyService;
     _stockWrappers           = stockWrappers;
     _goodsSearchService      = goodsSearchService;
     base.CommandPipeProvider = commandPipeProvider;
 }
Beispiel #6
0
 public AttendanceController(IAttendanceService AttendanceService,
                             IAttendanceSearchService AttendanceSearchService,
                             IAttendanceCategoryService AttendanceCategoryService,
                             IAttendancePropertyService AttendancePropertyService,
                             IExcelDataHaveColumnExporter dataExporter,
                             IEmployeeSearchService employeeSearchService,
                             IAttendanceWrapper[] attendanceWrappers,
                             ICommandPipeProvider commandPipeProvider)
 {
     _attendanceService         = AttendanceService;
     _attendanceSearchService   = AttendanceSearchService;
     _attendanceCategoryService = AttendanceCategoryService;
     _dataExporter = dataExporter;
     _attendancePropertyService = AttendancePropertyService;
     _employeeSearchService     = employeeSearchService;
     _attendanceWrappers        = attendanceWrappers;
     base.CommandPipeProvider   = commandPipeProvider;
 }
 public PurchaseController(IPurchaseService purchaseService,
                           IPurchaseSearchService purchaseSearchService,
                           IPurchaseCategoryService purchaseCategoryService,
                           IPurchasePropertyService purchasePropertyService,
                           IExcelDataHaveColumnExporter dataExporter,
                           ICommandPipeProvider commandPipeProvider,
                           IPurchaseWrapper[] purchaseWrappers,
                           IGoodsSearchService goodsSearchService)
 {
     _purchaseService         = purchaseService;
     _purchaseSearchService   = purchaseSearchService;
     _purchaseCategoryService = purchaseCategoryService;
     _dataExporter            = dataExporter;
     _purchasePropertyService = purchasePropertyService;
     _purchaseWrappers        = purchaseWrappers;
     _goodsSearchService      = goodsSearchService;
     base.CommandPipeProvider = commandPipeProvider;
 }