Beispiel #1
0
 public InventoryAdjustmentController()
 {
     this.inventoryAdjustmentRepository = new InventoryAdjustmentRepository();
 }
Beispiel #2
0
 public InventoryAdjustmentController(IInventoryAdjustmentRepository inventoryAdjustmentRepository)
 {
     this.inventoryAdjustmentRepository = inventoryAdjustmentRepository;
 }
Beispiel #3
0
 public InventoryAdjustmentService(IInventoryAdjustmentRepository inventoryAdjustmentRepository)
 {
     _inventoryAdjustmentRepository = inventoryAdjustmentRepository;
 }