Exemplo n.º 1
0
 public SupplierAccessController(IPoService poService, IPartService partService, IOptions <AppSettings> appSettings, ICompanyService companyService)
 {
     this._poService     = poService;
     this._partService   = partService;
     _appSettings        = appSettings.Value;
     this.companyService = companyService;
 }
Exemplo n.º 2
0
 public PartsController(IPartService partService, IPoService poService, ISupplierInvoiceService supplierInvoiceService,
                        IOrderService orderService, IPackingSlipService packingSlipService)
 {
     this._partService            = partService;
     this._poService              = poService;
     this._supplierInvoiceService = supplierInvoiceService;
     this._orderService           = orderService;
     this._packingSlipService     = packingSlipService;
 }
Exemplo n.º 3
0
 public PoController(IMapper mapper, IPoService poService, ILogger <PoController> logger)
 {
     this.mapper    = mapper;
     this.poService = poService;
     this.logger    = logger;
 }
Exemplo n.º 4
0
 public MobilePosController(IPoService poService)
 {
     this._poService = poService;
 }