public MemoService(IUnitOfWork uow, IDBSQLServer db) { this.uow = uow as UnitOfWork; this.db = db as DBSQLServer; this.objOrdSvc = new OrderService(uow, db); this.objStockDetailsService = new StockDetailsService(uow, db); }
public StockDetailsService(IUnitOfWork uow, IDBSQLServer dBSQL) { this.uow = uow as UnitOfWork; this.dBSQL = dBSQL as DBSQLServer; }
public DownloadScriptService(IUnitOfWork uow, IDBSQLServer db) { this.uow = uow as UnitOfWork; this.db = db as DBSQLServer; }