13 lines
481 B
C#
13 lines
481 B
C#
namespace StandManager.Service.Interfaces
|
|
{
|
|
public interface IManagerService
|
|
{
|
|
public IClienteService ClienteService{ get; set; }
|
|
public IDestinazioneService DestinazioneService{ get; set; }
|
|
public IEventoService EventoService{ get; set; }
|
|
public IIscrizioneEventoService IscrizioneEventoService{ get; set; }
|
|
public IReferenteService ReferenteService{ get; set; }
|
|
public IUtenteService UtenteService { get; set; }
|
|
}
|
|
}
|