예제 #1
0
        public Education Find(Expression <Func <Education, bool> > filter)
        {
            var data = _mapper.Map <Education>(_educationDal.Get(filter));

            return(data);
        }
예제 #2
0
 public Education GetEducationById(int Id)
 {
     return(_educationDal.Get(x => x.Id == Id, x => x.Developer));
 }
예제 #3
0
 public Education GetById(int id)
 {
     return(_educationDal.Get(p => p.Id == id));
 }