public virtual int FillById(DocumentsBetta2DataSet.fizlicoDataTable dataTable, int id) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     this.Adapter.SelectCommand.Parameters[0].Value = ((int)(id));
     if ((this.ClearBeforeFill == true)) {
         dataTable.Clear();
     }
     int returnValue = this.Adapter.Fill(dataTable);
     return returnValue;
 }
 public virtual int FillByConstPartner(DocumentsBetta2DataSet.fizlicoDataTable dataTable) {
     this.Adapter.SelectCommand = this.CommandCollection[1];
     if ((this.ClearBeforeFill == true)) {
         dataTable.Clear();
     }
     int returnValue = this.Adapter.Fill(dataTable);
     return returnValue;
 }
 public virtual int FillById(DocumentsBetta2DataSet.ourorgsDataTable dataTable, object id) {
     this.Adapter.SelectCommand = this.CommandCollection[1];
     if ((id == null)) {
         throw new global::System.ArgumentNullException("id");
     }
     else {
         this.Adapter.SelectCommand.Parameters[0].Value = ((object)(id));
     }
     if ((this.ClearBeforeFill == true)) {
         dataTable.Clear();
     }
     int returnValue = this.Adapter.Fill(dataTable);
     return returnValue;
 }
 public virtual int FillByInt(DocumentsBetta2DataSet.typedocsIntDataTable dataTable) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     if ((this.ClearBeforeFill == true)) {
         dataTable.Clear();
     }
     int returnValue = this.Adapter.Fill(dataTable);
     return returnValue;
 }
 public virtual int FillByObjects(DocumentsBetta2DataSet.docsViewDataTable dataTable, string objects_id) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     if ((objects_id == null)) {
         throw new global::System.ArgumentNullException("objects_id");
     }
     else {
         this.Adapter.SelectCommand.Parameters[0].Value = ((string)(objects_id));
     }
     if ((this.ClearBeforeFill == true)) {
         dataTable.Clear();
     }
     int returnValue = this.Adapter.Fill(dataTable);
     return returnValue;
 }