public bool CheckIsExist(EducationLevel educationLevel) { return(educationLevelRepository.Get(chk => chk.Name == educationLevel.Name) == null ? false : true); }
public string GetEdcuationLevelNameByEducationLevelId(int educationLevelId) { return(_educationLevelRepository.Get(x => x.Id == educationLevelId).EducationName.ToString()); }