using ProductionLineMonitor.Application.Services.OEEService.Dtos; using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Application.Services.OEEService { public interface IOEEService { List GetOEE(string machineId, string startDate, string endDate); Dictionary> GetOEEByPeriod(string machineIds, string startDate, string endDate, int peroid); } }