Exemplo n.º 1
0
 public PurchaseService(accounting_systemContext serverContext, IOptions <AppSettingsModel> app)
 {
     _serverContext = serverContext;
     appSettings    = app;
     APKey          = appSettings.Value.AP_KEY;
     SalesTaxKey    = appSettings.Value.SALES_TAX_KEY;
 }
Exemplo n.º 2
0
 public SalesService(accounting_systemContext serverContext, IOptions <AppSettingsModel> app)
 {
     _serverContext = serverContext;
     appSettings    = app;
     ARTradeKey     = appSettings.Value.AR_TRADE_KEY;
     SalesTaxKey    = appSettings.Value.SALES_TAX_KEY;
 }
 public ChartOfAccountService(accounting_systemContext serverContext)
 {
     _serverContext = serverContext;
 }
Exemplo n.º 4
0
 public TrackingService(accounting_systemContext serverContext)
 {
     _serverContext = serverContext;
 }
Exemplo n.º 5
0
 public InventoryService(accounting_systemContext serverContext)
 {
     _serverContext = serverContext;
 }
Exemplo n.º 6
0
 public FileAttachmentService(accounting_systemContext serverContext, IWebHostEnvironment webHostEnvironment)
 {
     _serverContext = serverContext;
     _environment   = webHostEnvironment;
 }
 public SubsdiaryLedgerService(accounting_systemContext serverContext)
 {
     _serverContext = serverContext;
 }
Exemplo n.º 8
0
 public IncomeItemService(accounting_systemContext serverContext)
 {
     _serverContext = serverContext;
 }
Exemplo n.º 9
0
 public TaxRateService(accounting_systemContext serverContext)
 {
     _serverContext = serverContext;
 }