コード例 #1
0
ファイル: WSellService.cs プロジェクト: manlsc/ESC.Core
 public WSellService()
 {
     sRepository   = new WSellRepository();
     slRepository  = new WSellLineRepository(sRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(sRepository.DbCondext);
     snlRepository = new WSellNoticeLineRepository(slRepository.DbCondext);
     snRepository  = new WSellNoticeRepository(slRepository.DbCondext);
 }
コード例 #2
0
 public WSellReturnService()
 {
     srRepository  = new WSellReturnRepository();
     srlRepository = new WSellReturnLineRepository(srRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(srRepository.DbCondext);
     slRepository  = new WSellLineRepository(srlRepository.DbCondext);
     sRepository   = new WSellRepository(srlRepository.DbCondext);
 }
コード例 #3
0
ファイル: WPurchaseService.cs プロジェクト: manlsc/ESC.Core
 public WPurchaseService()
 {
     pRepository   = new WPurchaseRepository();
     plRepository  = new WPurchaseLineRepository(pRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(pRepository.DbCondext);
     pnlRepository = new WPurchaseNoticeLineRepository(plRepository.DbCondext);
     pnRepository  = new WPurchaseNoticeRepository(plRepository.DbCondext);
 }
コード例 #4
0
 public WTransferInService()
 {
     tiRepository   = new WTransferInRepository();
     tilRepository  = new WTransferInLineRepository(tiRepository.DbCondext);
     nuRepository   = new SNumberRuleRepository(tiRepository.DbCondext);
     tinlRepository = new WTransferInNoticeLineRepository(tilRepository.DbCondext);
     tinRepository  = new WTransferInNoticeRepository(tilRepository.DbCondext);
 }
コード例 #5
0
 public WPurchaseReturnService()
 {
     prRepository  = new WPurchaseReturnRepository();
     prlRepository = new WPurchaseReturnLineRepository(prRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(prRepository.DbCondext);
     pRepository   = new WPurchaseRepository(prlRepository.DbCondext);
     plRepository  = new WPurchaseLineRepository(prlRepository.DbCondext);
 }
コード例 #6
0
 public WInventoryService()
 {
     iRepository   = new WInventoryRepository();
     ilRepository  = new WInventoryLineRepository(iRepository.DbCondext);
     locRepository = new BLocationRepository(iRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(iRepository.DbCondext);
     ooRepository  = new WOtherOutRepository(iRepository.DbCondext);
     oolRepository = new WOtherOutLineRepository(iRepository.DbCondext);
     oiRepositroy  = new WOtherInRepository(iRepository.DbCondext);
     oilRepository = new WOtherInLineRepository(iRepository.DbCondext);
 }
コード例 #7
0
 public WTransferOutService()
 {
     toRepository  = new WTransferOutRepository();
     tolRepository = new WTransferOutLineRepository(toRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(toRepository.DbCondext);
 }
コード例 #8
0
 public SNumberRuleService()
 {
     repository = new SNumberRuleRepository();
 }
コード例 #9
0
ファイル: WSellNoticeService.cs プロジェクト: manlsc/ESC.Core
 public WSellNoticeService()
 {
     pnRepository  = new WSellNoticeRepository();
     pnlRepository = new WSellNoticeLineRepository(pnRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(pnRepository.DbCondext);
 }
コード例 #10
0
 public WOtherInService()
 {
     oiRepository  = new WOtherInRepository();
     oilRepository = new WOtherInLineRepository(oiRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(oiRepository.DbCondext);
 }
コード例 #11
0
 public WOtherOutService()
 {
     ooRepository  = new WOtherOutRepository();
     oolRepository = new WOtherOutLineRepository(ooRepository.DbCondext);
     nuRepository  = new SNumberRuleRepository(ooRepository.DbCondext);
 }