using ProductionLineMonitor.Core.Dtos; using ProductionLineMonitor.Core.Models; using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Application.Services.CimService { public interface ICimService { void CreateOrUpdate(CimDto dto); void UpdateMqttClientState(MqttClientStateDto dto); ResultDto> GetCims(bool isShowError); } }