Exemple #1
0
 public MainPresenter(IIntelClient intelClient)
 {
     this.Service = new ServicePresenter(intelClient);
     this.IntelData = new IntelDataPresenter(intelClient);
 }
 public void MyTestInitialize()
 {
     mockIntelClient = new Moq.Mock<IIntelClient>();
     target = new IntelDataPresenter(mockIntelClient.Object);
 }
 public void MyTestCleanup()
 {
     target = null;
 }
Exemple #4
0
 public MainPresenter(IIntelClient intelClient)
 {
     this.Service   = new ServicePresenter(intelClient);
     this.IntelData = new IntelDataPresenter(intelClient);
 }