public virtual bool DeleteAll(System.Linq.Expressions.Expression <Func <T, bool> > filter = null)
 {
     repository.DeleteAll(filter);
     return(true);
 }
 public virtual bool DeleteAll()
 {
     repository.DeleteAll();
     return(true);
 }