Ejemplo n.º 1
0
 private void OnMyTestServiceSessionCreated(IMyTestService testService, int sessionId)
 {
     CreatedCount++;
 }
Ejemplo n.º 2
0
 private void OnMyTestServiceSessionTerminated(IMyTestService testService)
 {
     CreatedCount--;
 }
Ejemplo n.º 3
0
 public MyTestController(IMyTestService myTestService)
 {
     _myTestService = myTestService;
 }