예제 #1
0
 public virtual WMSDataSet7.StoreDataTable GetData()
 {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     WMSDataSet7.StoreDataTable dataTable = new WMSDataSet7.StoreDataTable();
     this.Adapter.Fill(dataTable);
     return(dataTable);
 }
예제 #2
0
        public virtual int Fill(WMSDataSet7.StoreDataTable dataTable)
        {
            this.Adapter.SelectCommand = this.CommandCollection[0];
            if ((this.ClearBeforeFill == true))
            {
                dataTable.Clear();
            }
            int returnValue = this.Adapter.Fill(dataTable);

            return(returnValue);
        }
예제 #3
0
 public virtual int Update(WMSDataSet7.StoreDataTable dataTable)
 {
     return(this.Adapter.Update(dataTable));
 }