Пример #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);
 }
Пример #3
0
 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);
 }