public virtual InwardOutward.PostalStampDenomMasterDataTable GetPostalStampDenomByStampDenomId(global::System.Nullable<global::System.Guid> StampDenomId) {
     this.Adapter.SelectCommand = this.CommandCollection[4];
     if ((StampDenomId.HasValue == true)) {
         this.Adapter.SelectCommand.Parameters[1].Value = ((System.Guid)(StampDenomId.Value));
     }
     else {
         this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
     }
     InwardOutward.PostalStampDenomMasterDataTable dataTable = new InwardOutward.PostalStampDenomMasterDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }
 public virtual InwardOutward.PostalStampDenomMasterDataTable GetAllPostalStampDenomDetails() {
     this.Adapter.SelectCommand = this.CommandCollection[3];
     InwardOutward.PostalStampDenomMasterDataTable dataTable = new InwardOutward.PostalStampDenomMasterDataTable();
     this.Adapter.Fill(dataTable);
     return dataTable;
 }