14 lines
373 B
C#
14 lines
373 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 InspectionPageState { get; set; }
|
|
List<JtbFasiDto> Reparti { get; }
|
|
List<StbActivityTypeDto> TipiAttività { get; }
|
|
} |