Files
SteUP_Dotnet/SteUp.Shared/Core/Data/Contracts/ISteupDataService.cs

14 lines
364 B
C#

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; }
}