示例#1
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);
            }
        }
示例#2
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();
      }
 private void InitClass() {
     this.DataSetName = "DSFichaAdmAlquiler";
     this.Prefix = "";
     this.Namespace = "http://tempuri.org/DSFichaAdmAlquiler.xsd";
     this.EnforceConstraints = true;
     this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableContratoVigente = new ContratoVigenteDataTable();
     base.Tables.Add(this.tableContratoVigente);
     this.tablePagos = new PagosDataTable();
     base.Tables.Add(this.tablePagos);
     this.tableEncabezado = new EncabezadoDataTable();
     base.Tables.Add(this.tableEncabezado);
     this.tableValoresRenta = new ValoresRentaDataTable();
     base.Tables.Add(this.tableValoresRenta);
     this.tableEncabezados = new EncabezadosDataTable();
     base.Tables.Add(this.tableEncabezados);
 }
 internal void InitVars(bool initTable) {
     this.tableContratoVigente = ((ContratoVigenteDataTable)(base.Tables["ContratoVigente"]));
     if ((initTable == true)) {
         if ((this.tableContratoVigente != null)) {
             this.tableContratoVigente.InitVars();
         }
     }
     this.tablePagos = ((PagosDataTable)(base.Tables["Pagos"]));
     if ((initTable == true)) {
         if ((this.tablePagos != null)) {
             this.tablePagos.InitVars();
         }
     }
     this.tableEncabezado = ((EncabezadoDataTable)(base.Tables["Encabezado"]));
     if ((initTable == true)) {
         if ((this.tableEncabezado != null)) {
             this.tableEncabezado.InitVars();
         }
     }
     this.tableValoresRenta = ((ValoresRentaDataTable)(base.Tables["ValoresRenta"]));
     if ((initTable == true)) {
         if ((this.tableValoresRenta != null)) {
             this.tableValoresRenta.InitVars();
         }
     }
     this.tableEncabezados = ((EncabezadosDataTable)(base.Tables["Encabezados"]));
     if ((initTable == true)) {
         if ((this.tableEncabezados != null)) {
             this.tableEncabezados.InitVars();
         }
     }
 }
 internal PagosRow(global::System.Data.DataRowBuilder rb) : 
         base(rb) {
     this.tablePagos = ((PagosDataTable)(this.Table));
 }