Example #1
0
 /// <summary>
 /// Sets the time dependent method used by the class.
 /// </summary>
 /// <param name="method">The time dependent method for the class to use.</param>
 public void SetMethod(TimeDependentTendonMethod method)
 {
     Method = method;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TimeDependentTendon" /> class.
 /// </summary>
 /// <param name="seed">The seed.</param>
 /// <param name="method">The time dependent method for the class to use.</param>
 public TimeDependentTendon(CSiApiSeed seed, TimeDependentTendonMethod method) : base(seed)
 {
     Method = method;
 }