19 lines
866 B
C#
19 lines
866 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 IFeatureService FeatureService{ get; set; }
|
|
public IInvitoEventoService InvitoEventoService{ get; set; }
|
|
public IIscrizioneEventoService IscrizioneEventoService{ get; set; }
|
|
public IPermissionService PermissionService{ get; set; }
|
|
public IReferenteService ReferenteService{ get; set; }
|
|
public IRuoloService RuoloService{ get; set; }
|
|
public ISezioneService SezioneService{ get; set; }
|
|
public ITipologiaClienteService TipologiaClienteService { get; set; }
|
|
public IUtenteService UtenteService { get; set; }
|
|
}
|
|
}
|