示例#1
0
 public void CancelarCuenta(int id)
 {
     try
     {
         _cuentaAhorroRepository.CancelarCuenta(id);
     }
     catch (System.Exception e)
     {
         _logger.LogError(e.ToString());
         throw;
     }
 }