Example #1
0
            public consipcategoryRow AddconsipcategoryRow(int idconsipcategory, string description, string active)
            {
                consipcategoryRow rowconsipcategoryRow = ((consipcategoryRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    idconsipcategory,
                    description,
                    active
                };
                rowconsipcategoryRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowconsipcategoryRow);
                return(rowconsipcategoryRow);
            }
Example #2
0
 public consipcategoryRowChangeEvent(consipcategoryRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveconsipcategoryRow(consipcategoryRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddconsipcategoryRow(consipcategoryRow row)
 {
     this.Rows.Add(row);
 }