using CoreAgent.Domain.Interfaces.CustomWSClient; using CoreAgent.Domain.Interfaces.ProtocolLogHandlers; using CoreAgent.Infrastructure.Services.CustomWSClient; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreAgent.Infrastructure.Services.ProtocolLogHandlers { public class ProtocolMSHandleLogs : CustomWebSocketClient, IProtocollHandleLogs { protected ProtocolMSHandleLogs(ILogger logger, string serverUrl, ICustomMessageHandler messageHandler) : base(logger, serverUrl, messageHandler) { } public void RunStart() { } public void RunStop() { } } }