public ProductionChainViewModel()
 {
     Components = new ProductionChainComponentListViewModel();
 }
 public ProductionChainViewModel(ProductionChainComponentListViewModel components) : this()
 {
     Components = components;
 }