10 lines
219 B
C#
10 lines
219 B
C#
using OAService.Service.Servizi.Interfacce;
|
|
using StandManager.Domain.Entita;
|
|
|
|
namespace StandManager.Service.Interfaces;
|
|
|
|
public interface IUtenteService : ITService<Utente>
|
|
{
|
|
Task<List<Utente>> ListaCapoarea();
|
|
}
|