Exemplo n.º 1
0
 /// <summary>
 /// Создает воздушное судно без дополнительной информации
 /// </summary>
 public ComponentDirective(TemplateComponentDirective templateComponentDirective)
     : this()
 {
     ManHours      = templateComponentDirective.ManHours;
     Cost          = templateComponentDirective.Cost;
     DirectiveType = templateComponentDirective.DirectiveType;
     _threshold    = templateComponentDirective.Threshold;
     Highlight     = Highlight.White;
     NDTType       = templateComponentDirective.NDTType;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Создает воздушное судно без дополнительной информации
 /// </summary>
 public ComponentDirective(TemplateComponentDirective templateComponentDirective, Component parentComponent)
     : this(templateComponentDirective)
 {
     ParentComponent = parentComponent;
 }