|
@@ -7,16 +7,19 @@ namespace DataExchange.Tests
|
|
public class App
|
|
public class App
|
|
{
|
|
{
|
|
private const string InterfaceName = "BrApi0";
|
|
private const string InterfaceName = "BrApi0";
|
|
|
|
+ private static readonly ExternalDataExchangeApi DxApi;
|
|
|
|
|
|
static App()
|
|
static App()
|
|
{
|
|
{
|
|
if (Script.Undefined == (Window.Get(InterfaceName)))
|
|
if (Script.Undefined == (Window.Get(InterfaceName)))
|
|
Window.Set(InterfaceName, new DummyDataExchangeApi());
|
|
Window.Set(InterfaceName, new DummyDataExchangeApi());
|
|
|
|
+
|
|
|
|
+ DxApi = Window.Get<ExternalDataExchangeApi>(InterfaceName);
|
|
}
|
|
}
|
|
|
|
|
|
public static void Main()
|
|
public static void Main()
|
|
{
|
|
{
|
|
- var dxs = new DataExchangeService(Window.Get<IDataExchangeApi>(InterfaceName));
|
|
|
|
|
|
+ var dxs = new DataExchangeService(DxApi);
|
|
|
|
|
|
var svc = dxs.Create<IInterface1>("Svc1Name");
|
|
var svc = dxs.Create<IInterface1>("Svc1Name");
|
|
svc.Op0(DateTime.Now);
|
|
svc.Op0(DateTime.Now);
|