Exemple #1
0
 public AlertRepository(DataContext context)
 {
     _context = context;
     _InvRepo = new InventoryRepository(context);
 }
 public InvoiceRepository(DataContext context)
 {
     _context  = context;
     _CustRepo = new CustRepository(context);
     _InvRepo  = new InventoryRepository(context);
 }