예제 #1
0
            public IssueContactTableRow AddIssueContactTableRow(int ID, string FirstName, string LastName, string FullName, string Phone, string Mobile, string Fax, string Email)
            {
                IssueContactTableRow rowIssueContactTableRow = ((IssueContactTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ID,
                    FirstName,
                    LastName,
                    FullName,
                    Phone,
                    Mobile,
                    Fax,
                    Email
                };
                rowIssueContactTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowIssueContactTableRow);
                return(rowIssueContactTableRow);
            }
예제 #2
0
 public IssueContactTableRowChangeEvent(IssueContactTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveIssueContactTableRow(IssueContactTableRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddIssueContactTableRow(IssueContactTableRow row)
 {
     this.Rows.Add(row);
 }