예제 #1
0
 public ServerStatusAppServiceUnitTest()
 {
     IServerStatusRepository serverRepository = new IServerStatusRepositoryMock().Setup();
     IServerStatusService serverService = new ServerStatusService(serverRepository);
     serverStatusAppService = new ServerStatusAppService(serverService);
 }
예제 #2
0
 public ServersStatusController(IServerStatusAppService app)
 {
     this.app = app;
 }