Example #1
0
            public CompanyPaymentServiceTableRow AddCompanyPaymentServiceTableRow(int CompanyID, int PaymentServiceID, string PaymentServiceName, string PaymentServiceNumber, bool IsActive, string Comments, System.DateTime LastUpdated, string UserID, string RowVersion)
            {
                CompanyPaymentServiceTableRow rowCompanyPaymentServiceTableRow = ((CompanyPaymentServiceTableRow)(this.NewRow()));

                rowCompanyPaymentServiceTableRow.ItemArray = new object[] {
                    CompanyID,
                    PaymentServiceID,
                    PaymentServiceName,
                    PaymentServiceNumber,
                    IsActive,
                    Comments,
                    LastUpdated,
                    UserID,
                    RowVersion
                };
                this.Rows.Add(rowCompanyPaymentServiceTableRow);
                return(rowCompanyPaymentServiceTableRow);
            }
Example #2
0
 public CompanyPaymentServiceTableRowChangeEvent(CompanyPaymentServiceTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveCompanyPaymentServiceTableRow(CompanyPaymentServiceTableRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddCompanyPaymentServiceTableRow(CompanyPaymentServiceTableRow row)
 {
     this.Rows.Add(row);
 }