123456789101112 |
- using ProductionLineMonitor.Application.Services.OEEService.Dtos;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Application.Services.OEEService
- {
- public interface IOEEService
- {
- List<MachineOEEInfo> GetOEE(string machineId, string startDate, string endDate);
- }
- }
|