Iscrizione
This commit is contained in:
6
StandManager.Service/Interfaces/IInvitoEventoService.cs
Normal file
6
StandManager.Service/Interfaces/IInvitoEventoService.cs
Normal file
@ -0,0 +1,6 @@
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IInvitoEventoService : ITService<InvitoEvento>{}
|
||||
@ -5,6 +5,7 @@
|
||||
public IClienteService ClienteService{ get; set; }
|
||||
public IDestinazioneService DestinazioneService{ get; set; }
|
||||
public IEventoService EventoService{ get; set; }
|
||||
public IInvitoEventoService InvitoEventoService{ get; set; }
|
||||
public IIscrizioneEventoService IscrizioneEventoService{ get; set; }
|
||||
public IReferenteService ReferenteService{ get; set; }
|
||||
public IUtenteService UtenteService { get; set; }
|
||||
|
||||
16
StandManager.Service/InvitoEventoService.cs
Normal file
16
StandManager.Service/InvitoEventoService.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using OAService.Service.Servizi.Implementazioni;
|
||||
using StandManager.Domain.Entita;
|
||||
using StandManager.Service.Interfaces;
|
||||
using StandManager.Service.Repository;
|
||||
|
||||
namespace StandManager.Service;
|
||||
|
||||
public class InvitoEventoService : TService<InvitoEvento>, IInvitoEventoService
|
||||
{
|
||||
private readonly IStandManagerUnitOfWork _unitOfWork;
|
||||
|
||||
public InvitoEventoService(IStandManagerUnitOfWork unitOfWork) : base(unitOfWork)
|
||||
{
|
||||
_unitOfWork = unitOfWork;
|
||||
}
|
||||
}
|
||||
@ -5,12 +5,13 @@ namespace StandManager.Service;
|
||||
public class ManagerService : IManagerService
|
||||
{
|
||||
public ManagerService(IUtenteService utenteService, IClienteService clienteService, IDestinazioneService destinazioneService, IEventoService eventoService,
|
||||
IIscrizioneEventoService iscrizioneEventoService, IReferenteService referenteService)
|
||||
IInvitoEventoService invitoEventoService, IIscrizioneEventoService iscrizioneEventoService, IReferenteService referenteService)
|
||||
{
|
||||
UtenteService = utenteService;
|
||||
ClienteService = clienteService;
|
||||
DestinazioneService = destinazioneService;
|
||||
EventoService = eventoService;
|
||||
InvitoEventoService = invitoEventoService;
|
||||
IscrizioneEventoService = iscrizioneEventoService;
|
||||
ReferenteService = referenteService;
|
||||
}
|
||||
@ -19,6 +20,7 @@ public class ManagerService : IManagerService
|
||||
public IClienteService ClienteService { get; set; }
|
||||
public IDestinazioneService DestinazioneService { get; set; }
|
||||
public IEventoService EventoService { get; set; }
|
||||
public IInvitoEventoService InvitoEventoService{ get; set; }
|
||||
public IIscrizioneEventoService IscrizioneEventoService { get; set; }
|
||||
public IReferenteService ReferenteService { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user