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

10 lines
190 B
C#

using SteUp.Shared.Core.Dto;
namespace SteUp.Shared.Core.Data.Contracts;
public interface ISteupDataService
{
Task Init();
List<PuntoVenditaDto> PuntiVenditaList { get; }
}