diff --git a/CoreAgent.Domain/CoreAgent.Domain.csproj b/CoreAgent.Domain/CoreAgent.Domain.csproj index 11f42c4..f32cd8c 100644 --- a/CoreAgent.Domain/CoreAgent.Domain.csproj +++ b/CoreAgent.Domain/CoreAgent.Domain.csproj @@ -8,8 +8,11 @@ + + + @@ -19,7 +22,6 @@ - diff --git a/CoreAgent.Domain/Interfaces/CustomWSClient/ICustomMessageHandler.cs b/CoreAgent.Domain/Interfaces/CustomWSClient/ICustomMessageHandler.cs deleted file mode 100644 index ac57127..0000000 --- a/CoreAgent.Domain/Interfaces/CustomWSClient/ICustomMessageHandler.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CoreAgent.Domain.Interfaces.CustomWSClient -{ - public interface ICustomMessageHandler - { - void HandleMessage(string MsgData, IObserverCustomWebSocketClient observer); - } -} diff --git a/CoreAgent.Domain/Interfaces/CustomWSClient/IObserverCustomWebSocketClient.cs b/CoreAgent.Domain/Interfaces/CustomWSClient/IObserverCustomWebSocketClient.cs deleted file mode 100644 index 0fdef65..0000000 --- a/CoreAgent.Domain/Interfaces/CustomWSClient/IObserverCustomWebSocketClient.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CoreAgent.Domain.Interfaces.CustomWSClient -{ - public interface IObserverCustomWebSocketClient - { - public void SendMessage(string message); - } -} diff --git a/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocolLogsProviderObserver.cs b/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocolLogsProviderObserver.cs deleted file mode 100644 index 7fd4d21..0000000 --- a/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocolLogsProviderObserver.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CoreAgent.Domain.Interfaces.ProtocolLogHandlers -{ - public interface IProtocolLogsProviderObserver - { - void OnData(string msg); - } -} diff --git a/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocollHandleLogs.cs b/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocollHandleLogs.cs deleted file mode 100644 index df0a354..0000000 --- a/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocollHandleLogs.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CoreAgent.Domain.Interfaces.ProtocolLogHandlers -{ - public interface IProtocollHandleLogs - { - public void RunStart(); - - public void RunStop(); - } -} diff --git a/CoreAgent.Infrastructure/CoreAgent.Infrastructure.csproj b/CoreAgent.Infrastructure/CoreAgent.Infrastructure.csproj index 7a73d4c..1b1ac1a 100644 --- a/CoreAgent.Infrastructure/CoreAgent.Infrastructure.csproj +++ b/CoreAgent.Infrastructure/CoreAgent.Infrastructure.csproj @@ -15,7 +15,6 @@ -