Esempio n. 1
0
 public virtual Employee.QualificationMasterDataTable GetQualificationDetrailsByQualificationId(global::System.Nullable<global::System.Guid> QualificationID) {
     this.Adapter.SelectCommand = this.CommandCollection[3];
     if ((QualificationID.HasValue == true)) {
         this.Adapter.SelectCommand.Parameters[1].Value = ((System.Guid)(QualificationID.Value));
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     Employee.QualificationMasterDataTable dataTable = new Employee.QualificationMasterDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
Esempio n. 2
0
 public virtual Employee.QualificationMasterDataTable GetQualificationMaster() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     Employee.QualificationMasterDataTable dataTable = new Employee.QualificationMasterDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }