Esempio n. 1
0
 public virtual Registration.InputSheetDataTable GetInputSheetDetailsByFileSlNo(global::System.Nullable<decimal> FileSlNo) {
     this.Adapter.SelectCommand = this.CommandCollection[3];
     if ((FileSlNo.HasValue == true)) {
         this.Adapter.SelectCommand.Parameters[1].Value = ((decimal)(FileSlNo.Value));
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     Registration.InputSheetDataTable dataTable = new Registration.InputSheetDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
Esempio n. 2
0
 public virtual Registration.InputSheetDataTable GetInputSheetDetailsByRegistrationId(global::System.Nullable<global::System.Guid> RegistrationId) {
     this.Adapter.SelectCommand = this.CommandCollection[4];
     if ((RegistrationId.HasValue == true)) {
         this.Adapter.SelectCommand.Parameters[1].Value = ((System.Guid)(RegistrationId.Value));
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     Registration.InputSheetDataTable dataTable = new Registration.InputSheetDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
Esempio n. 3
0
 public virtual Registration.InputSheetDataTable GetInputSheetDetails() {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     Registration.InputSheetDataTable dataTable = new Registration.InputSheetDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }