public MyCustomRepository(InventoryDAL _db)
 {
     this.db  = _db;
     dbEntity = db.Set <T>();
 }
 public MyCustomRepository()
 {
     this.db  = new InventoryDAL();
     dbEntity = db.Set <T>();
 }