public void Add(T model)
 {
     DBContext.Set <T>().Add(model);
     DBContext.SaveChanges();
 }