Host.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 using Sage.Reporting.Engine.Integration;
5 using System.Threading;
6 using System.Globalization;
7 
8 namespace sage.ew.reports
9 {
13  internal class Host : IReportingEngineHost
14  {
15  private IReportingEngineSite _oSite;
16 
17  public Host()
18  {
19  }
20 
21  public object GetService(Guid identifier)
22  {
23  return null;
24  }
25 
26  public IReportingEngineSite Site
27  {
28  get
29  {
30  return _oSite;
31  }
32  set
33  {
34  _oSite = value;
35  }
36  }
37  }
38 }