Beispiel #1
0
 public LookupOrchestra(ICountryService countryService, ICurrencyService currencyService, ICustomerTypeService customerTypeService, IDespatchService despatchService,
                        IPorterageService porterageService, IPortService portService, IPackWtUnitService packWtUnitService, IPurchaseChargeTypeService purchaseChargeTypeService,
                        IPurchaseTypeService purchaseTypeService, ITransactionTaxLocationService transactionTaxLocationService, IvwPermissionDetailService permissionDetailService,
                        ICompanyService companyService, IDivisionService divisionService, IDepartmentService departmentService, ISetupGlobalService setupGlobalService, ISetupLocalService setupLocalService)
 {
     _countryService                = countryService;
     _currencyService               = currencyService;
     _customerTypeService           = customerTypeService;
     _despatchService               = despatchService;
     _packWtUnitService             = packWtUnitService;
     _portService                   = portService;
     _porterageService              = porterageService;
     _purchaseChargeTypeService     = purchaseChargeTypeService;
     _purchaseTypeService           = purchaseTypeService;
     _setupGlobalService            = setupGlobalService;
     _setupLocalService             = setupLocalService;
     _transactionTaxLocationService = transactionTaxLocationService;
     _permissionDetailService       = permissionDetailService;
     _companyService                = companyService;
     _divisionService               = divisionService;
     _departmentService             = departmentService;
 }
 public PostOfficeTests()
 {
     productService  = A.Fake <IProductService>();
     supplierService = A.Fake <ISupplierService>();
     despatchService = new DespatchService(productService, supplierService);
 }
 public OrderService(IPaymentGateway paymentGateway, IDespatchService despatchService)
 {
     _paymentGateway  = paymentGateway;
     _despatchService = despatchService;
 }
 public DespatchOrchestra(IDespatchService despatchService)
 {
     _despatchService = despatchService;
 }
 public DespatchDateController(IDespatchService despatchService)
 {
     this.despatchService = despatchService;
 }