Esempio n. 1
0
 /// <summary>
 /// Initialize a shared domain with a name and domain expression.
 /// </summary>
 public SharedDomainModel(BundleModel bundle, ModelName theName, SharedDomainExpressionModel theExpression)
     : base(theName)
 {
     Parent      = bundle;
     _expression = theExpression;
 }
Esempio n. 2
0
 /// <summary>
 /// Initialize a shared domain with a name and domain expression.
 /// </summary>
 public SharedDomainModel(ModelModel theModel, ModelName theName, SharedDomainExpressionModel theExpression)
     : base(theName)
 {
     Parent      = theModel;
     _expression = theExpression;
 }