コード例 #1
0
ファイル: ContextBase.cs プロジェクト: lulzzz/production
 public void SetUpContext()
 {
     this.BuildPlansReportService = Substitute.For <IBuildPlansReportService>();
     this.Sut = new BuildPlansReportFacadeService(this.BuildPlansReportService);
 }
コード例 #2
0
 public BuildPlansReportFacadeService(IBuildPlansReportService buildPlansReportService)
 {
     this.buildPlansReportService = buildPlansReportService;
 }