Пример #1
0
 public WMS_C101_InStoreService(IDatabaseFactory dbfactory)
 {
     this.runtimeService             = new UnitOfWork(dbfactory);
     this.WMS_C101_InStoreRepository = new WMS_C101_InStoreRepository(dbfactory);
     this.instoreDetailRepository    = new WMS_C102_InStoreDetailRepository(dbfactory);
     this.outstoreDetailRepository   = new WMS_C105_OutStoreDetailRepository(dbfactory);
     this.stockRepository            = new WMS_C103_StockRepository(dbfactory);
 }
Пример #2
0
 public WMS_C102_InStoreDetailService(IDatabaseFactory dbfactory)
 {
     this.runtimeService = new UnitOfWork(dbfactory);
     this.WMS_C102_InStoreDetailRepository = new WMS_C102_InStoreDetailRepository(dbfactory);
 }