コード例 #1
0
ファイル: ScannerAPIs.cs プロジェクト: Proerp/LAVIE12AUG
 public ScannerAPIs(IPackRepository packRepository, ICartonRepository cartonRepository, IPalletRepository palletRepository)
 {
     this.packRepository   = packRepository;
     this.cartonRepository = cartonRepository;
     this.palletRepository = palletRepository;
 }
コード例 #2
0
 public CartonService(ICartonRepository cartonRepository)
     : base(cartonRepository, "CartonPostSaveValidate", "CartonSaveRelative")
 {
     this.cartonRepository = cartonRepository;
 }
コード例 #3
0
 public CartonAPIs(ICartonRepository cartonRepository)
 {
     this.cartonRepository = cartonRepository;
 }
コード例 #4
0
 public CartonService(ICartonRepository cartonRepository)
     : base(cartonRepository, null, "CartonSaveRelative")
 {
     this.cartonRepository = cartonRepository;
 }
コード例 #5
0
 public CartonDetailsReportService(ICartonRepository cartonRepository)
 {
     this.cartonRepository = cartonRepository;
 }