Пример #1
0
            public EmpresasRow AddEmpresasRow(long IdEmpresa, string Descripcion, string Conexion, string BaseDeDatos, string Usuario, string Password, string Activo, System.DateTime FechaCreacion, long IdConexionCreacion, System.Byte[] UltimaModificacion, long IdConexionUltimaModificacion, System.Guid RowId)
            {
                EmpresasRow rowEmpresasRow = ((EmpresasRow)(this.NewRow()));

                rowEmpresasRow.ItemArray = new object[] {
                    IdEmpresa,
                    Descripcion,
                    Conexion,
                    BaseDeDatos,
                    Usuario,
                    Password,
                    Activo,
                    FechaCreacion,
                    IdConexionCreacion,
                    UltimaModificacion,
                    IdConexionUltimaModificacion,
                    RowId
                };
                this.Rows.Add(rowEmpresasRow);
                return(rowEmpresasRow);
            }
Пример #2
0
 public EmpresasRowChangeEvent(EmpresasRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemoveEmpresasRow(EmpresasRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddEmpresasRow(EmpresasRow row)
 {
     this.Rows.Add(row);
 }