public override global::System.Data.DataTable Clone()
            {
                GastosDataTable cln = ((GastosDataTable)(base.Clone()));

                cln.InitVars();
                return(cln);
            }
Ejemplo n.º 2
0
        //--------------------------------------------------------------------------------------------------------------------------------------
        public bool Load()
        {
            Configuration();

            BD                         = new DataBase();
            BD.DataSetName             = "DataBase";
            BD.SchemaSerializationMode = SchemaSerializationMode.IncludeSchema;

            try
            {
                BD.ReadXml(DBFile);

                tablePresupesto = BD.Presupuesto;
                tableGastos     = BD.Gastos;
                tableCompras    = BD.Compras;
                tableVentas     = BD.Ventas;
                tablePagos      = BD.Pagos;

                UpdateEstadisticas();
                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }
 private void InitClass()
 {
     this.DataSetName             = "dsClasesVirtuales";
     this.Prefix                  = "";
     this.Namespace               = "http://tempuri.org/dsClasesVirtuales.xsd";
     this.EnforceConstraints      = true;
     this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableGastos             = new GastosDataTable();
     base.Tables.Add(this.tableGastos);
 }
 internal void InitVars(bool initTable)
 {
     this.tableGastos = ((GastosDataTable)(base.Tables["Gastos"]));
     if ((initTable == true))
     {
         if ((this.tableGastos != null))
         {
             this.tableGastos.InitVars();
         }
     }
 }
Ejemplo n.º 5
0
    //--------------------------------------------------------------------------------------------------------------------------------------
    /// <summary>Carga la base de datos e inicializa todas las tablas</summary>
    internal static void LoadDataBase()
      {
      BD = new DBViaje(); 
      BD.DataSetName = "DataBase";
      BD.SchemaSerializationMode = SchemaSerializationMode.IncludeSchema;

      if( File.Exists(DatosFile) )
        BD.ReadXml(DatosFile);

      tablePresupesto = BD.Presupuesto;
      tableGastos     = BD.Gastos;
      tableCompras    = BD.Compras;
      tableVentas     = BD.Ventas;
      tablePagos      = BD.Pagos;

      GetPresupuesto();
      GetGastos();
      GetCompras();
      }
 internal GastosRow(global::System.Data.DataRowBuilder rb) :
     base(rb)
 {
     this.tableGastos = ((GastosDataTable)(this.Table));
 }