Beispiel #1
0
 /// <summary>
 /// Create a new Assumption.
 /// </summary>
 /// <param name="name">The name of the Assumption (such as Segment Addition).</param>
 /// <param name="type">The type of this Assumption.</param>
 public Assumption(String name, AssumptionType type)
 {
     this.Name = name;
     this.Type = type;
     Enabled   = true;
 }
Beispiel #2
0
 /// <summary>
 /// Create a new Assumption.
 /// </summary>
 /// <param name="name">The name of the Assumption (such as Segment Addition).</param>
 /// <param name="type">The type of this Assumption.</param>
 public Assumption(String name, AssumptionType type)
 {
     this.Name = name;
     this.Type = type;
     Enabled = true;
 }