예제 #1
0
 public ApiVanSalesController(ITerminalServices terminalServices,
                              ITenantLocationServices tenantLocationServices, IOrderService orderService,
                              IProductServices productServices, IUserService userService, IMarketServices marketServices, IVanSalesService vanSalesService, IVehicleInspectionService inspectionService, IEmployeeServices employeeServices,
                              IAccountServices accountServices, ITransferOrderService transferOrderService, ITenantsServices tenantServices)
     : base(terminalServices, tenantLocationServices, orderService, productServices, userService)
 {
     _marketServices       = marketServices;
     _vanSalesService      = vanSalesService;
     _inspectionService    = inspectionService;
     _employeeServices     = employeeServices;
     _accountServices      = accountServices;
     _transferOrderService = transferOrderService;
     _tenantServices       = tenantServices;
 }
 public VehicleInspectionController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IVehicleInspectionService inspectionService, IMarketServices marketServices) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _inspectionService = inspectionService;
     _marketServices = marketServices;
 }