public int UpdateEducationLevel(EducationLevelDTO data) { EducationLevel dataToUpdate = EducationLevelRequestFormatter.ConvertRespondentInfoFromDTO(data); var res = _unitOfWork.EducationLevelRepository.Update(dataToUpdate); _unitOfWork.Save(); return(res); }
public EducationLevelDTO InsertEducationLevel(EducationLevelDTO data) { EducationLevel dataToInsert = EducationLevelRequestFormatter.ConvertRespondentInfoFromDTO(data); return(EducationLevelRequestFormatter.ConvertRespondentInfoToDTO(_unitOfWork.EducationLevelRepository.Create(dataToInsert))); }
public EducationLevelDTO GetEducationLevelById(int id) { return(EducationLevelRequestFormatter.ConvertRespondentInfoToDTO(_unitOfWork.EducationLevelRepository.GetById(id))); }