示例#1
0
 public InputSheetRow AddInputSheetRow(
             RegistrationDocumentCheckListRow parentRegistrationDocumentCheckListRowByRegistrationDocumentCheckList_InputSheet, 
             System.Guid OfficeId, 
             System.Guid RegistrationTypeId, 
             System.Guid ValuationFormId, 
             string FilePrefix, 
             decimal FileSlNo, 
             decimal FileYear, 
             System.DateTime ApplnDate, 
             string ApplicantName, 
             string ApplnAddress, 
             decimal PropertyValue, 
             bool IsRented, 
             System.DateTime LeasePeriodFrom, 
             System.DateTime LeasePeriodTo, 
             decimal DepositAmount, 
             decimal Tax, 
             decimal YearlyRent, 
             decimal StampDutyUsed, 
             string Status, 
             string AddlnInfo, 
             string CreatedBy, 
             System.DateTime CreatedAt, 
             string ModifiedBy, 
             System.DateTime ModifiedAt) {
     InputSheetRow rowInputSheetRow = ((InputSheetRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             OfficeId,
             RegistrationTypeId,
             ValuationFormId,
             FilePrefix,
             FileSlNo,
             FileYear,
             ApplnDate,
             ApplicantName,
             ApplnAddress,
             PropertyValue,
             IsRented,
             LeasePeriodFrom,
             LeasePeriodTo,
             DepositAmount,
             Tax,
             YearlyRent,
             StampDutyUsed,
             Status,
             AddlnInfo,
             CreatedBy,
             CreatedAt,
             ModifiedBy,
             ModifiedAt};
     if ((parentRegistrationDocumentCheckListRowByRegistrationDocumentCheckList_InputSheet != null)) {
         columnValuesArray[0] = parentRegistrationDocumentCheckListRowByRegistrationDocumentCheckList_InputSheet[0];
     }
     rowInputSheetRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowInputSheetRow);
     return rowInputSheetRow;
 }
示例#2
0
 public void RemoveRegistrationDocumentCheckListRow(RegistrationDocumentCheckListRow row) {
     this.Rows.Remove(row);
 }
示例#3
0
 public RegistrationDocumentCheckListRowChangeEvent(RegistrationDocumentCheckListRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
示例#4
0
 public void AddRegistrationDocumentCheckListRow(RegistrationDocumentCheckListRow row) {
     this.Rows.Add(row);
 }