Beispiel #1
0
 public VMDependencyManagment(DBItemType type_available, LTG_Entity.Environment current)
 {
     ManagedEnvironment = current;
     ManagedItemType    = DBItemType.Environment;
     ListDependencies   = Linq.DependenciesList(current, type_available);
     Init(type_available);
 }
Beispiel #2
0
 public VMDependencyManagment(DBItemType type_available, Meta current)
 {
     ManagedMeta      = current;
     ManagedItemType  = DBItemType.Meta;
     ListDependencies = Linq.DependenciesList(current, type_available);
     Init(type_available);
 }
Beispiel #3
0
 // Constructors
 public VMDependencyManagment(DBItemType type_available, Template t)
 {
     ManagedTemplate  = t;
     ManagedItemType  = DBItemType.Template;
     ListDependencies = Linq.DependenciesList(t, type_available);
     Init(type_available);
 }