public void AddLicenseApplicationRow(LicenseApplicationRow row) {
     this.Rows.Add(row);
 }
 public SpicemanSignatureRow AddSpicemanSignatureRow(System.Guid SignatureId, LicenseApplicationRow parentLicenseApplicationRowByFK_SpicemanSignature_LicenseApplication, string FullName, string Status, string CreatedBy, System.DateTime CreatedAt, string ModifiedBy, System.DateTime ModifiedAt, string Designation) {
     SpicemanSignatureRow rowSpicemanSignatureRow = ((SpicemanSignatureRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             SignatureId,
             null,
             FullName,
             Status,
             CreatedBy,
             CreatedAt,
             ModifiedBy,
             ModifiedAt,
             Designation};
     if ((parentLicenseApplicationRowByFK_SpicemanSignature_LicenseApplication != null)) {
         columnValuesArray[1] = parentLicenseApplicationRowByFK_SpicemanSignature_LicenseApplication[0];
     }
     rowSpicemanSignatureRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowSpicemanSignatureRow);
     return rowSpicemanSignatureRow;
 }
 public LicenseApplicationRowChangeEvent(LicenseApplicationRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveLicenseApplicationRow(LicenseApplicationRow row) {
     this.Rows.Remove(row);
 }