public DataTransportPointAttribute(
     DataTransportPointDirection direction,
     string[] keywords)
 {
     _direction = direction;
     _keywords = keywords.ToList().AsReadOnly();
 }
Ejemplo n.º 2
0
 public DataTransportPoint(
     [IOC(false)] string name,
     [IOC(false)] DataTransportPointDirection direction,
     [IOC(false)] IReadOnlyList<string> keywords,
     [IOC(false)] object value)
 {
     _name = name;
     _direction = direction;
     _keywords = keywords;
     _value = value;
 }