public IEnumerable <TEntity> GetAllByExpression(Func <TEntity, bool> expression) { var all = EntityTable.Where(expression).ToList(); return(all); }