Exemplo n.º 1
0
 public virtual CloudAccountDA.EstimateDisputeHistoryDataTable GetData()
 {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     CloudAccountDA.EstimateDisputeHistoryDataTable dataTable = new CloudAccountDA.EstimateDisputeHistoryDataTable();
     this.Adapter.Fill(dataTable);
     return(dataTable);
 }
Exemplo n.º 2
0
 public virtual int Fill(CloudAccountDA.EstimateDisputeHistoryDataTable dataTable)
 {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     if (this.ClearBeforeFill)
     {
         dataTable.Clear();
     }
     return(this.Adapter.Fill(dataTable));
 }
Exemplo n.º 3
0
 public virtual CloudAccountDA.EstimateDisputeHistoryDataTable DeleteByEstimateID(int?EstimateID)
 {
     this.Adapter.SelectCommand = this.CommandCollection[1];
     if (EstimateID.HasValue)
     {
         this.Adapter.SelectCommand.Parameters[1].Value = EstimateID.Value;
     }
     else
     {
         this.Adapter.SelectCommand.Parameters[1].Value = DBNull.Value;
     }
     CloudAccountDA.EstimateDisputeHistoryDataTable dataTable = new CloudAccountDA.EstimateDisputeHistoryDataTable();
     this.Adapter.Fill(dataTable);
     return(dataTable);
 }
Exemplo n.º 4
0
 public virtual int Update(CloudAccountDA.EstimateDisputeHistoryDataTable dataTable)
 {
     return(this.Adapter.Update(dataTable));
 }