Ejemplo n.º 1
0
 public bool Deletar(TipoSeguro tipo, long numeroApolice)
 {
     try
     {
         return(_seguroService.Deletar(tipo, numeroApolice));
     }
     catch (IntegridadeException e)
     {
         throw new IntegridadeException(e.Message);
     }
     catch (ConcorrenciaBancoException e)
     {
         throw new ConcorrenciaBancoException(e.Message);
     }
 }