ISyncService bővítése

This commit is contained in:
2025-02-27 12:47:58 +01:00
parent 5512120306
commit 883ae6b845
7 changed files with 130 additions and 36 deletions
@@ -5,7 +5,10 @@ namespace WorkFlowCheck.BL.Services.Interfaces
{
public interface ISyncService
{
Task<CheckPointListDTO> GetAllCheckPointAsync();
Task<List<CheckPointDTO>> GetAllCheckPointAsync();
Task<List<LocationDTO>> GetAllLocationAsync();
Task<List<EquipmentDTO>> GetAllEquipmentAsync();
Task<List<CheckListTemplateHeaderDTO>> GetAllCheckListTemplateAsync();
}
}