Example #1
0
 public ImportService(ICsvReader reader, IBuyerService buyerService, IProductService productService, IMetaProductRepository metaProductRepository)
 {
     this.reader = reader;
     this.buyerService = buyerService;
     this.productService = productService;
     this.metaProductRepository = metaProductRepository;
 }
Example #2
0
 public BuyerController(IBuyerRepository buyerRepo, IMetaProductRepository metaProductRepo, IBuyerService buyerService, ICanSave saver)
 {
     _buyerRepo = buyerRepo;
     _metaProductRepo = metaProductRepo;
     _buyerService = buyerService;
     this.saver = saver;
 }
Example #3
0
 public VesselScheduleController(IVesselScheduleService vesselScheduleService,
     IVesselService vesselService,
     IBuyerService buyerService,
     ISelectService selectService)
 {
     _vesselScheduleService = vesselScheduleService;
     _vesselService = vesselService;
     _buyerService = buyerService;
     _selectService = selectService;
 }
 public DerLoadingScheduleController(IVesselScheduleService vesselScheduleService, 
     IVesselService vesselService, 
     IBuyerService buyerService, 
     ISelectService selectService, 
     IMeasurementService measurementService,
     INLSService nlsService,
     IHighlightOrderService highlightOrderService,
     IDerLoadingScheduleService derLoadingScheduleService)
 {
     _vesselScheduleService = vesselScheduleService;
     _vesselService = vesselService;
     _buyerService = buyerService;
     _selectService = selectService;
     _measurementService = measurementService;
     _nlsService = nlsService;
     _highlightOrderService = highlightOrderService;
     _derLoadingScheduleService = derLoadingScheduleService;
 }
 public RFQController()
 {
     service = IoC.Resolve<IRFQService>("RFQService");
     buyerService = IoC.Resolve<IBuyerService>("BuyerService");
 }
 public RequisitionController()
 {
     service = IoC.Resolve<IRequisitionService>("RequisitionService");
     buyerService = IoC.Resolve<IBuyerService>("BuyerService");
 }
 public BuyerController()
 {
     service = IoC.Resolve<IBuyerService>("BuyerService");
 }
Example #8
0
 public BuyerController(IBuyerService buyerService)
 {
     _buyerService = buyerService;
 }
 public PurchaseOrderController()
 {
     service = IoC.Resolve<IPurchaseOrderService>("PurchaseOrderService");
     buyerService = IoC.Resolve<IBuyerService>("BuyerService");
     vendorService = IoC.Resolve<IVendorService>("VendorService");
 }