Exemplo n.º 1
0
 public AllDifferentConstraintModel(BundleModel bundle)
 {
     Parent     = bundle;
     Expression = new AllDifferentConstraintExpressionModel();
 }
Exemplo n.º 2
0
 public AllDifferentConstraintModel(BundleModel bundle, AllDifferentConstraintExpressionModel theExpressionModel)
 {
     Parent     = bundle;
     Expression = theExpressionModel;
 }
 public AllDifferentConstraintModel(ModelModel theModel)
 {
     Parent     = theModel;
     Expression = new AllDifferentConstraintExpressionModel();
 }
Exemplo n.º 4
0
 public AllDifferentConstraintModel(BundleModel bundle, ModelName theName, AllDifferentConstraintExpressionModel theExpressionModel)
     : base(theName)
 {
     Parent     = bundle;
     Expression = theExpressionModel;
 }
 public AllDifferentConstraintModel(ModelModel theModel, ModelName theName, AllDifferentConstraintExpressionModel theExpressionModel)
     : base(theName)
 {
     Parent     = theModel;
     Expression = theExpressionModel;
 }