Files
SteUP_Dotnet/SteUp.Shared/Core/Data/Contracts/ISteupDataService.cs
2026-02-18 12:12:10 +01:00

15 lines
404 B
C#

using SteUp.Shared.Core.Dto;
using SteUp.Shared.Core.Dto.PageState;
namespace SteUp.Shared.Core.Data.Contracts;
public interface ISteupDataService
{
Task Init();
void RegisterAppVersion();
List<PuntoVenditaDto> PuntiVenditaList { get; }
InspectionPageState InspectionPageState { get; set; }
List<JtbFasiDto> Reparti { get; }
List<StbActivityTypeDto> TipiAttività { get; }
}