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, DateTime startDate, DateTime endDate, int peroid, int dayORnight); Dictionary> GetOEEByPeriodV1(string machineIds, string startDate, string endDate, int peroid); List GetOEEByPeriodV2(string machineIds, string startDate, string endDate, int peroid, int shift); } }