Equipment, Lokáció de még csak a lista

This commit is contained in:
2025-03-15 14:05:05 +01:00
parent a72c9b342e
commit 9f1c3df5d6
41 changed files with 645 additions and 4 deletions
@@ -5,7 +5,10 @@ namespace WorkFlowCheck.Web.Services.Interfaces
public interface IBaseStockService
{
Task<List<CheckPointDTO>> GetAllCheckPoints();
Task<List<EquipmentDTO>> GetAllEquipments();
Task<List<LocationDTO>> GetAllLocations();
Task<CheckPointDTO> GetCheckPoint(int id);
Task<CheckListTemplateRowDTO> GetCheckListTemplateRow(int id);
Task<ApiResponseDTO<CheckPointDTO>> UpdateCheckPoint(CheckPointDTO checkPoint);
}
}