Explorar el Código

commit: refactoring: rename interface

Local hace 5 años
padre
commit
38bba4a3fd

+ 1 - 1
DataExchange/DataExchange.csproj

@@ -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>
   <ItemGroup>

+ 1 - 1
DataExchange/ExternalDataExchangeApi.cs

@@ -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 - 1
DataExchange/IDataExchangeApi.cs

@@ -1,7 +1,7 @@
 namespace DataExchange
 {
 
-    public interface IDataExchangeApi
+    public interface IDataExchangeDispatcher
     {
         string InvokeService(string serviceName, string actionName, string inputJson);
     }