10 lines
190 B
C#
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; }
|
|
} |