Files
StandManager/StandManager.Service/Interfaces/IUtenteService.cs
2025-12-01 09:56:00 +01:00

9 lines
183 B
C#

using OAService.Service.Servizi.Interfacce;
using StandManager.Domain.Entita;
namespace StandManager.Service.Interfaces;
public interface IUtenteService : ITService<Utente>
{
}