public ListContractorManagementRow AddListContractorManagementRow(int ContractorID, string ContractorName, string ContractorPhone, string ContractorAddress, string ContractorCity, string ContractorState, string ContractorZip, string CityLicenseNumber, string LicenseExprDate, string BondExprDate)
            {
                ListContractorManagementRow rowListContractorManagementRow = ((ListContractorManagementRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ContractorID,
                    ContractorName,
                    ContractorPhone,
                    ContractorAddress,
                    ContractorCity,
                    ContractorState,
                    ContractorZip,
                    CityLicenseNumber,
                    LicenseExprDate,
                    BondExprDate
                };
                rowListContractorManagementRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListContractorManagementRow);
                return(rowListContractorManagementRow);
            }
 public ListContractorManagementRowChangeEvent(ListContractorManagementRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveListContractorManagementRow(ListContractorManagementRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddListContractorManagementRow(ListContractorManagementRow row)
 {
     this.Rows.Add(row);
 }