Exemplo n.º 1
0
            public GruposVariablesRow AddGruposVariablesRow(long IdGrupo, long IdVariable, System.DateTime FechaCreacion, long IdConexionCreacion, System.Byte[] UltimaModificacion, long IdConexionUltimaModificacion, System.Guid RowId)
            {
                GruposVariablesRow rowGruposVariablesRow = ((GruposVariablesRow)(this.NewRow()));

                rowGruposVariablesRow.ItemArray = new object[] {
                    IdGrupo,
                    IdVariable,
                    FechaCreacion,
                    IdConexionCreacion,
                    UltimaModificacion,
                    IdConexionUltimaModificacion,
                    RowId
                };
                this.Rows.Add(rowGruposVariablesRow);
                return(rowGruposVariablesRow);
            }
Exemplo n.º 2
0
 public GruposVariablesRowChangeEvent(GruposVariablesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveGruposVariablesRow(GruposVariablesRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddGruposVariablesRow(GruposVariablesRow row)
 {
     this.Rows.Add(row);
 }