Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Example.Call"/> class.
 /// </summary>
 /// <param name='characteristics'>
 /// Characteristics that drive behaviour for the call
 /// </param>
 public Call(CallCharacteristics characteristics)
 {
     Characteristics = characteristics;
     Statistics = new CallStatistics();
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Example.Call"/> class.
 /// </summary>
 /// <param name='characteristics'>
 /// Characteristics that drive behaviour for the call
 /// </param>
 public Call(SimulationContext context, CallCharacteristics characteristics)
     : base(context)
 {
     Characteristics = characteristics;
     Statistics      = new CallStatistics();
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Example.Call"/> class.
 /// </summary>
 /// <param name='characteristics'>
 /// Characteristics that drive behaviour for the call
 /// </param>
 public Call(CallCharacteristics characteristics)
 {
     Characteristics = characteristics;
     Statistics      = new CallStatistics();
 }