public void RemoveCallHistoryRow(CallHistoryRow row) {
     this.Rows.Remove(row);
 }
 public CallHistoryRowChangeEvent(CallHistoryRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddCallHistoryRow(CallHistoryRow row) {
     this.Rows.Add(row);
 }