示例#1
0
 public IndicatorParameter(string name, IndicatorParameterType type)
 {
     this.Name = name ?? string.Empty;
     this.Type = type;
 }
示例#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);
 }
示例#4
0
 public IndicatorParameter(string name, IndicatorParameterType type)
 {
     this.Name = name ?? string.Empty;
     this.Type = type;
 }
示例#5
0
 public static IndicatorParameter Create(string name, IndicatorParameterType type)
 {
     return(new IndicatorParameter(name, type));
 }
示例#6
0
 public IndicatorParameterAttribute(string name, IndicatorParameterType type)
 {
     this.parameter = IndicatorParameter.Create(name, type);
 }