IOEEService.cs 478 B

1234567891011121314
  1. using ProductionLineMonitor.Application.Services.OEEService.Dtos;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Application.Services.OEEService
  6. {
  7. public interface IOEEService
  8. {
  9. List<MachineOEEInfo> GetOEE(string machineId, string startDate, string endDate);
  10. Dictionary<string, List<MachineOEEInfoByPeriod>> GetOEEByPeriod(string machineIds, string startDate, string endDate, int peroid);
  11. }
  12. }