Esempio n. 1
0
 public IndicatorParameter(string name, IndicatorParameterType type)
 {
     this.Name = name ?? string.Empty;
     this.Type = type;
 }
Esempio n. 2
0
 public static IndicatorParameter Create(string name, IndicatorParameterType type)
 {
     return new IndicatorParameter(name, type);
 }
 public IndicatorParameterAttribute(string name, IndicatorParameterType type)
 {
     this.parameter = IndicatorParameter.Create(name, type);
 }
Esempio n. 4
0
 public IndicatorParameter(string name, IndicatorParameterType type)
 {
     this.Name = name ?? string.Empty;
     this.Type = type;
 }
Esempio n. 5
0
 public static IndicatorParameter Create(string name, IndicatorParameterType type)
 {
     return(new IndicatorParameter(name, type));
 }
Esempio n. 6
0
 public IndicatorParameterAttribute(string name, IndicatorParameterType type)
 {
     this.parameter = IndicatorParameter.Create(name, type);
 }