示例#1
0
            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);
            }
示例#2
0
 public APPOINTMENTRowChangeEvent(APPOINTMENTRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveAPPOINTMENTRow(APPOINTMENTRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddAPPOINTMENTRow(APPOINTMENTRow row)
 {
     this.Rows.Add(row);
 }
示例#5
0
 public APPOINTMENTRowChangeEvent(APPOINTMENTRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }