public APPOINTMENTRow AddAPPOINTMENTRow(string appointment_guid, System.DateTime start_date, System.DateTime start_time, int length, string subject) { APPOINTMENTRow rowAPPOINTMENTRow = ((APPOINTMENTRow)(this.NewRow())); rowAPPOINTMENTRow.ItemArray = new object[] { appointment_guid, start_date, start_time, length, subject }; this.Rows.Add(rowAPPOINTMENTRow); return(rowAPPOINTMENTRow); }
public APPOINTMENTRowChangeEvent(APPOINTMENTRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveAPPOINTMENTRow(APPOINTMENTRow row) { this.Rows.Remove(row); }
public void AddAPPOINTMENTRow(APPOINTMENTRow row) { this.Rows.Add(row); }
public APPOINTMENTRowChangeEvent(APPOINTMENTRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }