@@ -38,7 +38,7 @@
<ItemGroup>
<Compile Include="DataExchangeService.cs" />
<Compile Include="ExternalDataExchangeApi.cs" />
- <Compile Include="IDataExchangeApi.cs" />
+ <Compile Include="IDataExchangeDispatcher.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
@@ -2,7 +2,7 @@
namespace DataExchange
{
- public class ExternalDataExchangeApi : IDataExchangeApi
+ public class ExternalDataExchangeApi : IDataExchangeDispatcher
[External]
public extern string InvokeService(string serviceName, string actionName, string inputJson);
@@ -1,7 +1,7 @@
namespace DataExchange
- public interface IDataExchangeApi
+ public interface IDataExchangeDispatcher
string InvokeService(string serviceName, string actionName, string inputJson);
}