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

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