コード例 #1
0
ファイル: Call.cs プロジェクト: PhillP/NSimulate
 /// <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();
 }
コード例 #2
0
ファイル: Call.cs プロジェクト: jhorv/NSimulate
 /// <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();
 }
コード例 #3
0
ファイル: Call.cs プロジェクト: Krockema/NSimulate
 /// <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();
 }