public virtual LicenseApplication.LicenseApplicationDataTable GetVendorSalesDetails() {
     this.Adapter.SelectCommand = this.CommandCollection[14];
     LicenseApplication.LicenseApplicationDataTable dataTable = new LicenseApplication.LicenseApplicationDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual LicenseApplication.LicenseApplicationDataTable GetVendorDetailsByVendorName(string NameOfApplicant) {
     this.Adapter.SelectCommand = this.CommandCollection[13];
     if ((NameOfApplicant == null)) {
         this.Adapter.SelectCommand.Parameters[0].Value = global::System.DBNull.Value;
     }
     else {
         this.Adapter.SelectCommand.Parameters[0].Value = ((string)(NameOfApplicant));
     }
     LicenseApplication.LicenseApplicationDataTable dataTable = new LicenseApplication.LicenseApplicationDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual LicenseApplication.LicenseApplicationDataTable GetVendorDetailsByLicenseNo(string LicenseNo) {
     this.Adapter.SelectCommand = this.CommandCollection[12];
     if ((LicenseNo == null)) {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = ((string)(LicenseNo));
     }
     LicenseApplication.LicenseApplicationDataTable dataTable = new LicenseApplication.LicenseApplicationDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual LicenseApplication.LicenseApplicationDataTable GetMachineDetailsByLicenceId(System.Guid LicenseApplicationId) {
     this.Adapter.SelectCommand = this.CommandCollection[10];
     this.Adapter.SelectCommand.Parameters[0].Value = ((System.Guid)(LicenseApplicationId));
     LicenseApplication.LicenseApplicationDataTable dataTable = new LicenseApplication.LicenseApplicationDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual LicenseApplication.LicenseApplicationDataTable GetLiceseApplnById(global::System.Nullable<global::System.Guid> LicenseApplicationId) {
     this.Adapter.SelectCommand = this.CommandCollection[9];
     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.LicenseApplicationDataTable dataTable = new LicenseApplication.LicenseApplicationDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual LicenseApplication.LicenseApplicationDataTable GetLicensApplication() {
     this.Adapter.SelectCommand = this.CommandCollection[0];
     LicenseApplication.LicenseApplicationDataTable dataTable = new LicenseApplication.LicenseApplicationDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }