Capoarea
This commit is contained in:
@ -6,7 +6,7 @@ public class ManagerService : IManagerService
|
||||
{
|
||||
public ManagerService(IUtenteService utenteService, IClienteService clienteService, IDestinazioneService destinazioneService, IEventoService eventoService,
|
||||
IInvitoEventoService invitoEventoService, IIscrizioneEventoService iscrizioneEventoService, IReferenteService referenteService,
|
||||
ITipologiaClienteService tipologiaClienteService)
|
||||
ITipologiaClienteService tipologiaClienteService, IFeatureService featureService, IPermissionService permissionService, IRuoloService ruoloService, ISezioneService sezioneService)
|
||||
{
|
||||
UtenteService = utenteService;
|
||||
ClienteService = clienteService;
|
||||
@ -16,14 +16,22 @@ public class ManagerService : IManagerService
|
||||
IscrizioneEventoService = iscrizioneEventoService;
|
||||
ReferenteService = referenteService;
|
||||
TipologiaClienteService = tipologiaClienteService;
|
||||
FeatureService = featureService;
|
||||
PermissionService = permissionService;
|
||||
RuoloService = ruoloService;
|
||||
SezioneService = sezioneService;
|
||||
}
|
||||
|
||||
public IUtenteService UtenteService { get; set; }
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user