Example #1
0
 public BulletQuantityService(IBulletQuantityRepository iRepository, IBulletRepository iBulletRepository, IInventoryTypeRepository iInventoryTypeRepository, IUnitRepository iUnitRepository)
 {
     this.repository              = iRepository;
     this.bulletRepository        = iBulletRepository;
     this.inventoryTypeRepository = iInventoryTypeRepository;
     this.unitRepository          = iUnitRepository;
 }
Example #2
0
 public BulletService(IBulletRepository iRepository, ICartridgeLoadRepository iCartridgeLoadRepository, IBulletCostRepository iBulletCostRepository, IBulletQuantityRepository iBulletQuantityRepository)
 {
     this.repository = iRepository;
     this.cartridgeLoadRepository = iCartridgeLoadRepository;
     this.costRepository          = iBulletCostRepository;
     this.quantityRepository      = iBulletQuantityRepository;
 }
Example #3
0
 public BulletQuantityService()
 {
     this.repository              = new BulletQuantityRepository();
     this.bulletRepository        = new BulletRepository();
     this.inventoryTypeRepository = new InventoryTypeRepository();
     this.unitRepository          = new UnitRepository();
 }
Example #4
0
 public BulletService()
 {
     this.repository = new BulletRepository();
     this.cartridgeLoadRepository = new CartridgeLoadRepository();
     this.costRepository          = new BulletCostRepository();
     this.quantityRepository      = new BulletQuantityRepository();
 }