public IQueryable <BranchDirector> FindAll(System.Linq.Expressions.Expression <Func <BranchDirector, bool> > conditions = null)
        {
            var oj = dbContext.FindAll(conditions);

            return(oj);
        }
Beispiel #2
0
        public New Find(Expression <Func <New, bool> > conditions = null)
        {
            var oj = dbContext.FindAll(conditions).FirstOrDefault();

            return(oj);
        }
Beispiel #3
0
        public IQueryable <NewsColumn> FindAll(Expression <Func <NewsColumn, bool> > conditions = null)
        {
            var oj = dbContext.FindAll(conditions);

            return(oj);
        }