Exemplo n.º 1
0
            public authorsRow AddauthorsRow(string au_id, string au_lname, string au_fname, string phone, string address, string city, string state, string zip, bool contract)
            {
                authorsRow rowauthorsRow = ((authorsRow)(this.NewRow()));

                rowauthorsRow.ItemArray = new object[] {
                    au_id,
                    au_lname,
                    au_fname,
                    phone,
                    address,
                    city,
                    state,
                    zip,
                    contract
                };
                this.Rows.Add(rowauthorsRow);
                return(rowauthorsRow);
            }
Exemplo n.º 2
0
 public authorsRowChangeEvent(authorsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveauthorsRow(authorsRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddauthorsRow(authorsRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 5
0
 public authorsRowChangeEvent(authorsRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemplo n.º 6
0
 public void RemoveauthorsRow(authorsRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 7
0
 public void AddauthorsRow(authorsRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 8
0
 public authorsRowChangeEvent(authorsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }