Exemplo n.º 1
0
 /// <summary>
 /// Actualiza datos de poliza
 /// </summary>
 /// <param name="respuestaServicioPI"></param>
 internal void Actualizar(RespuestaServicioPI respuestaServicioPI)
 {
     try
     {
         Logger.Info();
         var polizaDAL = new PolizaDAL();
         polizaDAL.Actualizar(respuestaServicioPI);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }