public Education Find(Expression <Func <Education, bool> > filter) { var data = _mapper.Map <Education>(_educationDal.Get(filter)); return(data); }
public Education GetEducationById(int Id) { return(_educationDal.Get(x => x.Id == Id, x => x.Developer)); }
public Education GetById(int id) { return(_educationDal.Get(p => p.Id == id)); }