IOEEService.cs 339 B

123456789101112
  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. }
  11. }