Example #1
0
 public CompletedDeliveryRepository(DeliveryStockDbContext context)
 {
     _context = context;
 }
 public CancelledDeliveryRepository(DeliveryStockDbContext context)
 {
     _context = context;
 }
Example #3
0
 public BookStockRepository(DeliveryStockDbContext context)
 {
     _context = context;
 }
 public ActiveDeliveryRepository(DeliveryStockDbContext context)
 {
     _context = context;
 }