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