Iniziata implementazione form rilevazione

This commit is contained in:
2026-02-13 17:28:48 +01:00
parent 06cc41ef8b
commit 69f2dee309
23 changed files with 712 additions and 18 deletions

View File

@@ -1,10 +1,14 @@
using SteUp.Shared.Core.Dto;
using SteUp.Shared.Core.Dto.PageState;
namespace SteUp.Shared.Core.Data.Contracts;
public interface ISteupDataService
{
Task Init();
List<PuntoVenditaDto> PuntiVenditaList { get; }
InspectionPageState Inspection { get; set; }
List<JtbFasiDto> Reparti { get; }
List<StbActivityTypeDto> TipiAttività { get; }
}