public void Dispose()
 {
     _dDataSQL  = null;
     _Exception = null;
     _ds        = null;
     _bReps     = false;
 }
 public nSeguimiento()
 {
     _Exception = null;
     _eListCons = new List <cConsulta>();
     _eConsulta = new cConsulta();
     _dDataSQL  = new DatosSQL(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
 }
Exemple #3
0
        //public Exception Exception
        //{
        //    get
        //    {
        //        return _Exception;
        //    }
        //    set
        //    {
        //        //_Exception = _value;
        //        //_nLog.ErrorMsg = _value.Message;
        //        //_nLog.Ruta = ConfigurationManager.AppSettings("rutaLog").ToString;
        //        //_nLog.GrabaLog();
        //    }
        //}

        public nMail()
        {
            _Exception = null;
            // _eMailList = New List(Of eMail)
            _eMail = new eMail();
            _dData = new DatosSQL();
            //_nLog = new nLog();
        }
Exemple #4
0
        public nCatalogo() : base(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString)
        {
            _sSubClase = "nCatalogo";


            _Exception = null;
            _eCatList  = new List <ECatalogo>();
            _eCat      = new ECatalogo();
            DB         = null;
        }
 private void frmLogin_Load(object sender, EventArgs e)
 {
     con = new DatosSQL(database);
     val = new Validaciones();
     btnLogUser.Enabled = false;
 }
 public ManejoForm(DatosSQL conexion)
 {
     cnx = conexion;
 }
 private void frmAdministrador_Load(object sender, EventArgs e)
 {
     con = new DatosSQL(database);
     con.crearDataSet();
     tablas = new List<DataTable>();
     cargarTablasEnCbo(tablas, cboTablas);
     val = new Validaciones();
     mnj = new ManejoForm(con);
 }
 private void frmRecXGenero_Load(object sender, EventArgs e)
 {
     admin = new frmAdministrador();
     con = new DatosSQL(database);
     val = new Validaciones();
 }
Exemple #9
0
 public void Dispose()
 {
     _dDataSQL  = null;
     _Exception = null;
     _ds        = null;
 }
Exemple #10
0
 public nGeneral(string _cadenaConexion)
 {
     _dDataSQL = new DatosSQL(_cadenaConexion);
     //_Exception = new Exception();
 }