public Result <bool> AddResident(Resident unit) { try { return(_residentRepository.AddResident(unit)); } catch (Exception ex) { throw ex; } }