Пример #1
0
 public PrintController(IWayBillTemplateService wayBillTemplateService, ICustomerService customerService,
                        IFreightService freightService, ICountryService countryService)
 {
     _wayBillTemplateService = wayBillTemplateService;
     _customerService        = customerService;
     _freightService         = freightService;
     _countryService         = countryService;
 }
Пример #2
0
 public WayBillController(IInStorageService inStorageService, IOrderService orderService, IFreightService freightService, ICustomerService customerService, IWayBillTemplateService wayBillTemplateService, IWayBillInfoRepository wayBillInfoRepository)
 {
     _inStorageService       = inStorageService;
     _orderService           = orderService;
     _freightService         = freightService;
     _customerService        = customerService;
     _wayBillTemplateService = wayBillTemplateService;
     _wayBillInfoRepository  = wayBillInfoRepository;
 }
Пример #3
0
 public PrintController(
     ICustomerOrderService customerOrderService,
     IFreightService freightService,
     ICountryService countryService,
     IWayBillTemplateService wayBillTemplateService,
     ICustomerService customerService,
     IWayBillInfoRepository wayBillInfoRepository,
     IOperateLogServices operateLogServices,
     IWorkContext workContext)
 {
     _customerOrderService   = customerOrderService;
     _freightService         = freightService;
     _countryService         = countryService;
     _wayBillTemplateService = wayBillTemplateService;
     _customerService        = customerService;
     _wayBillInfoRepository  = wayBillInfoRepository;
     _operateLogServices     = operateLogServices;
     _workContext            = workContext;
 }