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; }
public CompiledFunctionDefinitionStub(ComputationTargetType targetType, string uniqueId, string shortName) { _targetType = targetType; _functionDefinition = new FunctionDefinitionStub(uniqueId, shortName); }
public ComputationTarget(ComputationTargetType type, object value) { _type = type; _value = value; }
public ComputationTargetSpecification(ComputationTargetType type, UniqueId uid) { _type = type; _uid = uid; }