Example #1
0
 public void SetUpContext()
 {
     this.ShortageSummaryReportService = Substitute.For <IShortageSummaryReportService>();
     this.Sut = new ShortageSummaryFacadeService(this.ShortageSummaryReportService);
 }
 public ShortageSummaryFacadeService(IShortageSummaryReportService shortageSummaryReportService)
 {
     this.shortageSummaryReportService = shortageSummaryReportService;
 }