public void Setup()
 {
     _reportingService2005 = new Mock<IReportingService2005>();
     _catalogItemBuilder = new Mock<ICatalogItemInfoMapper>();
     _service = new ReportCatalogService(_reportingService2005.Object, RootReportFolder, _catalogItemBuilder.Object);
 }
Beispiel #2
0
 public ReportsService(ReportCatalogService reportCatalogService)
 {
     _reportCatalogService = reportCatalogService;
 }