示例#1
0
 public IntelDataPresenter(IIntelClient intelClient)
 {
     _intelClient = intelClient;
 }
示例#2
0
 public ServicePresenter(IIntelClient client)
 {
     _client = client;
     _client.PropertyChanged += new System.ComponentModel.PropertyChangedEventHandler(_client_PropertyChanged);
 }
示例#3
0
 public IntelDataPresenter(IIntelClient intelClient)
 {
     _intelClient = intelClient;
 }
示例#4
0
 public MainPresenter(IIntelClient intelClient)
 {
     this.Service = new ServicePresenter(intelClient);
     this.IntelData = new IntelDataPresenter(intelClient);
 }
示例#5
0
 public ServicePresenter(IIntelClient client)
 {
     _client = client;
     _client.PropertyChanged += new System.ComponentModel.PropertyChangedEventHandler(_client_PropertyChanged);
     
 }
示例#6
0
 public MainPresenter(IIntelClient intelClient)
 {
     this.Service   = new ServicePresenter(intelClient);
     this.IntelData = new IntelDataPresenter(intelClient);
 }