コード例 #1
0
 public bool GrabarDB(tb_Empresa_Info InfoEmpresa, ref string MensajeErrorOut)
 {
     try
     {
         return(ObusEmpresa.GuardarDB(InfoEmpresa, ref MensajeErrorOut));
     }
     catch (Exception ex)
     {
         return(false);
     }
 }
コード例 #2
0
        public Boolean Grabar(ref string msg)
        {
            try
            {
                tb_Empresa_Info InfoT = new tb_Empresa_Info();
                InfoT = get_Info();

                return(busEmpresa.GuardarDB(InfoT, ref msg));
            }
            catch (Exception ex)
            {
                return(false);
            }
        }