Esempio n. 1
0
        public MainPresenter(SynchronizationContext syncContext)
        {
            _intelService = new IntelService(syncContext);
            this.Service = new ServicePresenter(_intelService, new IntelServiceHost(new PeerRegistrationService()));

            this.AgentStatus = new AgentStatusPresenter();
            this.Imagery = new ImageryPresenter();

            this.Service.IntelService.AgentStatusChanged += this.AgentStatus.OnAgentStatusChanged;
            this.Service.IntelService.IntelReceived += this.Imagery.OnImageryReceived;
          
        }
Esempio n. 2
0
 public void MyTestCleanup()
 {
     _target = null;
 }
Esempio n. 3
0
 public void MyTestInitialize()
 {
     _target = new IntelService();
 }