private void OnMyTestServiceSessionCreated(IMyTestService testService, int sessionId)
 {
     CreatedCount++;
 }
 private void OnMyTestServiceSessionTerminated(IMyTestService testService)
 {
     CreatedCount--;
 }
Beispiel #3
0
 public MyTestController(IMyTestService myTestService)
 {
     _myTestService = myTestService;
 }