Esempio n. 1
0
 public DsiRelationModel(DsiElementModel elementsDataModel)
 {
     _elementsDataModel = elementsDataModel;
     _elementsDataModel.ElementRemoved += OnElementRemoved;
     _relationsByConsumerId             = new Dictionary <int, Dictionary <int, Dictionary <string, DsiRelation> > >();
     _relationTypeCount = new Dictionary <string, int>();
 }
Esempio n. 2
0
 public DsiModel(string processStep, Assembly executingAssembly)
 {
     _metaDataModel      = new MetaDataModel(processStep, executingAssembly);
     _elementsDataModel  = new DsiElementModel();
     _relationsDataModel = new DsiRelationModel(_elementsDataModel);
 }