// פונקיה זו מחזירה רשימה של מצב אישי של בנ"א לדו"ג:נשוי רווק public static List <PersonalSituationDto> getListStatusPersonal() { List <PersonalSituation> l = new List <PersonalSituation>(); l = db.PersonalSituations.ToList(); return(PersonalSituationDto.convertDBToDtoList(l)); }
// פונקיה זו מחזירה רשימה של מצב אישי של בנ"א לדו"ג:נשוי רווק public static List<PersonalSituationDto> getListPersonalSituation() { return PersonalSituationDto.convertDBToDtoList(db.PersonalSituations.ToList()); }