Alap funkció működés CheckPoints

This commit is contained in:
2025-02-12 20:00:49 +01:00
parent ac80a8a9bb
commit f57fef804d
23 changed files with 266 additions and 8 deletions
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WorkFlowCheck.Common.DTO;
namespace WorkFlowCheck.MAUI.Services.Interfaces
{
public interface IBaseStockService
{
Task<List<CheckPointDTO>> GetAllCheckPoints();
Task<CheckPointDTO> GetCheckPoint(int id);
}
}