15 lines
393 B
C#
15 lines
393 B
C#
using WorkFlowCheck.Common.DTO;
|
|
|
|
|
|
namespace WorkFlowCheck.BL.Services.Interfaces
|
|
{
|
|
public interface ISyncService
|
|
{
|
|
Task<List<CheckPointDTO>> GetAllCheckPointAsync();
|
|
Task<List<LocationDTO>> GetAllLocationAsync();
|
|
Task<List<EquipmentDTO>> GetAllEquipmentAsync();
|
|
|
|
Task<List<CheckListTemplateHeaderDTO>> GetAllCheckListTemplateAsync();
|
|
}
|
|
}
|