Exemplo n.º 1
0
            public updateRow AddupdateRow(string code, string shortdescription, string description, System.DateTime publishingdate, System.DateTime downloaddate, string flagkind, string filelist, string flagannullato)
            {
                updateRow rowupdateRow = ((updateRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    code,
                    shortdescription,
                    description,
                    publishingdate,
                    downloaddate,
                    flagkind,
                    filelist,
                    flagannullato
                };
                rowupdateRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowupdateRow);
                return(rowupdateRow);
            }
Exemplo n.º 2
0
 public updateRowChangeEvent(updateRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveupdateRow(updateRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddupdateRow(updateRow row)
 {
     this.Rows.Add(row);
 }