public VariablesEmpresasRow AddVariablesEmpresasRow(long IdVariable, long IdEmpresa, string Valor, System.DateTime FechaCreacion, long IdConexionCreacion, System.Byte[] UltimaModificacion, long IdConexionUltimaModificacion, System.Guid RowId)
            {
                VariablesEmpresasRow rowVariablesEmpresasRow = ((VariablesEmpresasRow)(this.NewRow()));

                rowVariablesEmpresasRow.ItemArray = new object[] {
                    IdVariable,
                    IdEmpresa,
                    Valor,
                    FechaCreacion,
                    IdConexionCreacion,
                    UltimaModificacion,
                    IdConexionUltimaModificacion,
                    RowId
                };
                this.Rows.Add(rowVariablesEmpresasRow);
                return(rowVariablesEmpresasRow);
            }
 public VariablesEmpresasRowChangeEvent(VariablesEmpresasRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveVariablesEmpresasRow(VariablesEmpresasRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddVariablesEmpresasRow(VariablesEmpresasRow row)
 {
     this.Rows.Add(row);
 }