Servizi e cose
This commit is contained in:
8
StandManager.Service/Interfaces/IClienteService.cs
Normal file
8
StandManager.Service/Interfaces/IClienteService.cs
Normal file
@ -0,0 +1,8 @@
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IClienteService : ITService<Cliente>
|
||||
{
|
||||
}
|
||||
6
StandManager.Service/Interfaces/IDestinazioneService.cs
Normal file
6
StandManager.Service/Interfaces/IDestinazioneService.cs
Normal file
@ -0,0 +1,6 @@
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IDestinazioneService : ITService<Destinazione>{}
|
||||
6
StandManager.Service/Interfaces/IEventoService.cs
Normal file
6
StandManager.Service/Interfaces/IEventoService.cs
Normal file
@ -0,0 +1,6 @@
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IEventoService : ITService<Evento>{}
|
||||
@ -0,0 +1,6 @@
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IIscrizioneEventoService : ITService<IscrizioneEvento>{}
|
||||
@ -2,6 +2,11 @@
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
6
StandManager.Service/Interfaces/IReferenteService.cs
Normal file
6
StandManager.Service/Interfaces/IReferenteService.cs
Normal file
@ -0,0 +1,6 @@
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IReferenteService : ITService<Referente>{}
|
||||
Reference in New Issue
Block a user