Initial
This commit is contained in:
6
StandManager.Service/Interfaces/IManagerService.cs
Normal file
6
StandManager.Service/Interfaces/IManagerService.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IManagerService
|
||||
{
|
||||
public IUtenteService UtenteService { get; set; }
|
||||
}
|
||||
9
StandManager.Service/Interfaces/IUtenteService.cs
Normal file
9
StandManager.Service/Interfaces/IUtenteService.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IUtenteService : ITService<Utente>
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user