コード例 #1
0
ファイル: MainPresenter.cs プロジェクト: spzenk/sfdocsamples
 public MainPresenter(IIntelClient intelClient)
 {
     this.Service = new ServicePresenter(intelClient);
     this.IntelData = new IntelDataPresenter(intelClient);
 }
コード例 #2
0
 public void MyTestInitialize()
 {
     mockIntelClient = new Moq.Mock<IIntelClient>();
     target = new IntelDataPresenter(mockIntelClient.Object);
 }
コード例 #3
0
 public void MyTestCleanup()
 {
     target = null;
 }
コード例 #4
0
 public MainPresenter(IIntelClient intelClient)
 {
     this.Service   = new ServicePresenter(intelClient);
     this.IntelData = new IntelDataPresenter(intelClient);
 }