Exemple #1
0
 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);
 }
Exemple #2
0
 public StockDetailsService(IUnitOfWork uow, IDBSQLServer dBSQL)
 {
     this.uow   = uow as UnitOfWork;
     this.dBSQL = dBSQL as DBSQLServer;
 }
Exemple #3
0
 public DownloadScriptService(IUnitOfWork uow, IDBSQLServer db)
 {
     this.uow = uow as UnitOfWork;
     this.db  = db as DBSQLServer;
 }