public IEnumerable <Resident> GetAllResidents() { try { IEnumerable <Resident> units = _residentRepository.GetAllResidents(); return(units); } catch (Exception ex) { throw ex; } }