Пример #1
0
 protected internal bool Actualizar(ProfesionesBE e_Profesiones)
 {
     try
     {
         ProfesionesDA o_Profesiones = new ProfesionesDA(m_BaseDatos);
         int           resp          = o_Profesiones.Actualizar(e_Profesiones);
         return(resp > 0);
     }
     catch (Exception ex)
     {
         throw new Exception("Clase Business: " + Nombre_Clase + "\r\n" + "Descripción: " + ex.Message);
     }
 }