public virtual LicenseApplication.SpicemanSignatureDataTable GetSpicemenDetailsByLicenseId(global::System.Nullable<global::System.Guid> LicenseApplicationId) {
     this.Adapter.SelectCommand = this.CommandCollection[2];
     if ((LicenseApplicationId.HasValue == true)) {
         this.Adapter.SelectCommand.Parameters[1].Value = ((System.Guid)(LicenseApplicationId.Value));
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     LicenseApplication.SpicemanSignatureDataTable dataTable = new LicenseApplication.SpicemanSignatureDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual LicenseApplication.SpicemanSignatureDataTable GetData() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     LicenseApplication.SpicemanSignatureDataTable dataTable = new LicenseApplication.SpicemanSignatureDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }