예제 #1
0
 protected internal bool Insertar(IdiomaBE e_Idioma)
 {
     try
     {
         IdiomaDA o_Idioma = new IdiomaDA(m_BaseDatos);
         int      resp     = o_Idioma.Insertar(e_Idioma);
         return(resp > 0);
     }
     catch (Exception ex)
     {
         throw new Exception("Clase Business: " + Nombre_Clase + "\r\n" + "Descripción: " + ex.Message);
     }
 }