public ContractTariffPatternService(IContractTariffPatternRepository contractTariffPatternRepository,
                                     ICustomerRepository customerRepository,
                                     ILocationRepository locationRepository, IUnitOfWork unitOfWork)
 {
     this._contractTariffPatternRepository = contractTariffPatternRepository;
     this._customerRepository = customerRepository;
     this._locationRepository = locationRepository;
     this._unitOfWork         = unitOfWork;
 }
Пример #2
0
 public OrderPatternService(IOrderPatternRepository orderPatternRepository, IContractTariffPatternRepository contractTariffPatternRepository,
                            ICustomerRepository customerRepository, IShippingCompanyRepository shippingCompanyRepository,
                            IVesselRepository vesselRepository, IShipperRepository shipperRepository, ILocationRepository locationRepository,
                            IContractTariffPatternService contractTariffPatternService, IContainerTypeRepository containerTypeRepository, IUnitOfWork unitOfWork)
 {
     this._orderPatternRepository          = orderPatternRepository;
     this._contractTariffPatternRepository = contractTariffPatternRepository;
     this._shippingCompanyRepository       = shippingCompanyRepository;
     this._vesselRepository             = vesselRepository;
     this._shipperRepository            = shipperRepository;
     this._locationRepository           = locationRepository;
     this._contractTariffPatternService = contractTariffPatternService;
     this._containerTypeRepository      = containerTypeRepository;
     this._unitOfWork         = unitOfWork;
     this._customerRepository = customerRepository;
 }