IHomeService.cs 1.1 KB

1234567891011121314151617181920212223
  1. using ProductionLineMonitor.Application.Services.HomeService.Dtos;
  2. using ProductionLineMonitor.Application.Services.HomeService.Models;
  3. using ProductionLineMonitor.Core.Dtos;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace ProductionLineMonitor.Application.Services.HomeService
  8. {
  9. public interface IHomeService
  10. {
  11. ModuleTypeOverview GetModuleTypeOverview();
  12. IEnumerable<MonthModuleType> GetMonthModuleTypesByMark(string mark, int year, int month);
  13. IEnumerable<MonthModuleType> GetMonthModuleTypes(int year, int month);
  14. ResultDto CreateMonthModuleType(MonthModuleTypeCreateAndUpdateDto dto);
  15. ResultDto UpdateMonthModuleType(MonthModuleTypeCreateAndUpdateDto dto);
  16. ResultDto CreateMonthModuleTypeV1(MonthModuleTypeCreateAndUpdateDto dto);
  17. ResultDto UpdateMonthModuleTypeV1(MonthModuleTypeCreateAndUpdateDto dto);
  18. ResultDto DeleteMonthModuleType(MonthModuleTypeCreateAndUpdateDto dto);
  19. ModuleTypeOverview GetModuleTypeOverview(string mark, int year, int month);
  20. ModuleTypeOverviewV1 GetModuleTypeOverviewV1(string mark, int year, int month);
  21. }
  22. }