public ListTemplateRow AddListTemplateRow(int TemplateID, string TemplateName)
            {
                ListTemplateRow rowListTemplateRow = ((ListTemplateRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    TemplateID,
                    TemplateName
                };
                rowListTemplateRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListTemplateRow);
                return(rowListTemplateRow);
            }
 public void RemoveListTemplateRow(ListTemplateRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddListTemplateRow(ListTemplateRow row)
 {
     this.Rows.Add(row);
 }
 public ListTemplateRowChangeEvent(ListTemplateRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }