public PowderQuantityService()
 {
     this.repository              = new PowderQuantityRepository();
     this.powderRepository        = new PowderRepository();
     this.inventoryTypeRepository = new InventoryTypeRepository();
     this.unitRepository          = new UnitRepository();
 }
 public PowderQuantityService(IPowderQuantityRepository iRepository, IPowderRepository iPowderRepository, IInventoryTypeRepository iInventoryTypeRepository, IUnitRepository iUnitRepository)
 {
     this.repository              = iRepository;
     this.powderRepository        = iPowderRepository;
     this.inventoryTypeRepository = iInventoryTypeRepository;
     this.unitRepository          = iUnitRepository;
 }
示例#3
0
 public BulletQuantityService()
 {
     this.repository              = new BulletQuantityRepository();
     this.bulletRepository        = new BulletRepository();
     this.inventoryTypeRepository = new InventoryTypeRepository();
     this.unitRepository          = new UnitRepository();
 }
示例#4
0
 public BulletQuantityService(IBulletQuantityRepository iRepository, IBulletRepository iBulletRepository, IInventoryTypeRepository iInventoryTypeRepository, IUnitRepository iUnitRepository)
 {
     this.repository              = iRepository;
     this.bulletRepository        = iBulletRepository;
     this.inventoryTypeRepository = iInventoryTypeRepository;
     this.unitRepository          = iUnitRepository;
 }
示例#5
0
 public BrassQuantityService()
 {
     this.repository              = new BrassQuantityRepository();
     this.brassRepository         = new BrassRepository();
     this.inventoryTypeRepository = new InventoryTypeRepository();
     this.unitRepository          = new UnitRepository();
 }
示例#6
0
 public BrassQuantityService(IBrassQuantityRepository iRepository, IBrassRepository iBrassRepository, IInventoryTypeRepository iInventoryTypeRepository, IUnitRepository iUnitRepository)
 {
     this.repository              = iRepository;
     this.brassRepository         = iBrassRepository;
     this.inventoryTypeRepository = iInventoryTypeRepository;
     this.unitRepository          = iUnitRepository;
 }
 public InventoryTypeService(IInventoryTypeRepository inventoryTypeRepository, IMapper iMapper)
 {
     _inventoryTypeRepository = inventoryTypeRepository;
     _iMapper = iMapper;
 }
 public InventoryTypeResultChecker(ITestDataImporter testDataImporter, IInventoryTypeRepository inventoryTypeRepository) : base(testDataImporter)
 {
     _inventoryTypeRepository = inventoryTypeRepository;
 }
 public InventoryTypesController(IInventoryTypeRepository inventoryTypeRepository, IMapper mapper)
 {
     _inventoryTypeRepository = inventoryTypeRepository;
     _mapper = mapper;
 }
 public BulkInventoryTypeDeletedEventHandler(IInventoryTypeRepository inventoryTypeRepository)
 {
     _inventoryTypeRepository = inventoryTypeRepository;
 }
 public BulkInventoryTypeCreatedEventHandler(IMapper mapper, IInventoryTypeRepository inventoryTypeRepository, ILockTypeRepository lockTypeRepository)
 {
     _mapper = mapper;
     _inventoryTypeRepository = inventoryTypeRepository;
     _lockTypeRepository      = lockTypeRepository;
 }
示例#12
0
 public InventoryTypeService(IInventoryTypeRepository iRepository)
 {
     this.repository = iRepository;
 }
示例#13
0
 public InventoryTypeService()
 {
     this.repository = new InventoryTypeRepository();
 }