Beispiel #1
0
        public GDPbyIndustry()
        {
            _freq = new Frequency
            {
                Options =
                    (BeaParameterOptions.IsRequired | BeaParameterOptions.HasAllValue |
                     BeaParameterOptions.AllowMultiples),
                AllValue = Globals.ALL_STRING
            };
            _industry = new Industry
            {
                Options =
                    (BeaParameterOptions.IsRequired | BeaParameterOptions.HasAllValue |
                     BeaParameterOptions.AllowMultiples),
                AllValue = Globals.ALL_STRING
            };
            _tableId = new TableID
            {
                Options =
                    (BeaParameterOptions.IsRequired | BeaParameterOptions.HasAllValue |
                     BeaParameterOptions.AllowMultiples),
                AllValue = Globals.ALL_STRING
            };
            _beaYear = new BeaYear
            {
                Options =
                    (BeaParameterOptions.IsRequired | BeaParameterOptions.HasAllValue |
                     BeaParameterOptions.AllowMultiples),
                AllValue = Globals.ALL_STRING
            };

            MyParameters = new List <BeaParameter> {
                _freq, _industry, _tableId, _beaYear
            };
        }
Beispiel #2
0
 public NIUnderlyingDetail()
 {
     _tableId = new Rand.Exo.UsGov.Bea.Parameters.NIUnderlyingDetail.TableID
     {
         Options = BeaParameterOptions.IsRequired
     };
     _freq = new Frequency
     {
         Options = BeaParameterOptions.IsRequired | BeaParameterOptions.AllowMultiples
     };
     _beaYear = new BeaYear
     {
         Options  = BeaParameterOptions.IsRequired | BeaParameterOptions.HasAllValue | BeaParameterOptions.AllowMultiples,
         AllValue = "X"
     };
     MyParameters = new List <BeaParameter> {
         _tableId, _freq, _beaYear
     };
 }
Beispiel #3
0
 public Iip()
 {
     _typeOfInvestment = new TypeOfInvestment
     {
         Options =
             (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
              BeaParameterOptions.AllowMultiples),
         DefaultValue = Globals.ALL_STRING,
         AllValue     = Globals.ALL_STRING
     };
     _component = new Component
     {
         Options =
             (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
              BeaParameterOptions.AllowMultiples),
         DefaultValue = Globals.ALL_STRING,
         AllValue     = Globals.ALL_STRING
     };
     _freq = new Frequency
     {
         Options =
             (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
              BeaParameterOptions.AllowMultiples),
         DefaultValue = Globals.ALL_STRING,
         AllValue     = Globals.ALL_STRING
     };
     _beaYear = new BeaYear
     {
         Options =
             (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
              BeaParameterOptions.AllowMultiples),
         DefaultValue = Globals.ALL_STRING,
         AllValue     = Globals.ALL_STRING
     };
     MyParameters = new List <BeaParameter> {
         _typeOfInvestment, _component, _freq, _beaYear
     };
 }
Beispiel #4
0
 public Ita()
 {
     _indicator = new Indicator
     {
         Options =
             (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
              BeaParameterOptions.AllowMultiples),
         DefaultValue = Globals.ALL_STRING,
         AllValue     = Globals.ALL_STRING
     };
     _areaOrCountry = new AreaOrCountry
     {
         Options =
             (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
              BeaParameterOptions.AllowMultiples),
         DefaultValue = "AllCountries",
         AllValue     = Globals.ALL_STRING
     };
     _freq = new Frequency
     {
         Options =
             (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
              BeaParameterOptions.AllowMultiples),
         DefaultValue = Globals.ALL_STRING,
         AllValue     = Globals.ALL_STRING
     };
     _beaYear = new BeaYear
     {
         Options =
             (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
              BeaParameterOptions.AllowMultiples),
         DefaultValue = Globals.ALL_STRING,
         AllValue     = Globals.ALL_STRING
     };
     MyParameters = new List <BeaParameter> {
         _indicator, _areaOrCountry, _freq, _beaYear
     };
 }
Beispiel #5
0
        public RegionalData()
        {
            _keyCode = new KeyCode
            {
                Options = BeaParameterOptions.IsRequired
            };
            _geoFips = new Parameters.RegionalData.GeoFips
            {
                Options = BeaParameterOptions.AllowMultiples
            };
            _beaYear = new BeaYear
            {
                Options =
                    (BeaParameterOptions.HasAllValue | BeaParameterOptions.HasDefaultValue |
                     BeaParameterOptions.AllowMultiples),
                DefaultValue = Globals.ALL_STRING,
                AllValue     = Globals.ALL_STRING
            };

            MyParameters = new List <BeaParameter> {
                _keyCode, _geoFips, _beaYear
            };
        }