public PortfolioViewTreeNode(UniqueId identifier, string name, ComputationTargetType targetType, int depth)
 {
     _identifier = identifier;
     _name       = name;
     _targetType = targetType;
     _depth      = depth;
 }
 public PortfolioViewTreeNode(UniqueId identifier, ComputationTargetType targetType, Func <ISecurity> security, int depth, decimal quantity)
 {
     _identifier = identifier;
     _targetType = targetType;
     _security   = security;
     _depth      = depth;
     _quantity   = quantity;
 }
Пример #3
0
 public CompiledFunctionDefinitionStub(ComputationTargetType targetType, string uniqueId, string shortName)
 {
     _targetType         = targetType;
     _functionDefinition = new FunctionDefinitionStub(uniqueId, shortName);
 }
Пример #4
0
 public ComputationTarget(ComputationTargetType type, object value)
 {
     _type  = type;
     _value = value;
 }
Пример #5
0
 public ComputationTarget(ComputationTargetType type, object value)
 {
     _type = type;
     _value = value;
 }
 public ComputationTargetSpecification(ComputationTargetType type, UniqueId uid)
 {
     _type = type;
     _uid  = uid;
 }