Beispiel #1
0
 public PartsReportFacadeService(IPartsReportService partsReportService)
 {
     this.partsReportService = partsReportService;
 }
Beispiel #2
0
 public void SetUpContext()
 {
     this.PartsReportService = Substitute.For <IPartsReportService>();
     this.Sut = new PartsReportFacadeService(this.PartsReportService);
 }