Capoarea
This commit is contained in:
@ -5,4 +5,4 @@ namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IClienteService : ITService<Cliente>
|
||||
{
|
||||
}
|
||||
}
|
||||
9
StandManager.Service/Interfaces/IFeatureService.cs
Normal file
9
StandManager.Service/Interfaces/IFeatureService.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using OAService.Service.Repository;
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IFeatureService : ITService<Feature>
|
||||
{
|
||||
}
|
||||
@ -5,9 +5,13 @@
|
||||
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; }
|
||||
}
|
||||
|
||||
9
StandManager.Service/Interfaces/IPermissionService.cs
Normal file
9
StandManager.Service/Interfaces/IPermissionService.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using OAService.Service.Repository;
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IPermissionService : ITService<Permission>
|
||||
{
|
||||
}
|
||||
9
StandManager.Service/Interfaces/IRuoloService.cs
Normal file
9
StandManager.Service/Interfaces/IRuoloService.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using OAService.Service.Repository;
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface IRuoloService : ITService<Ruolo>
|
||||
{
|
||||
}
|
||||
9
StandManager.Service/Interfaces/ISezioneService.cs
Normal file
9
StandManager.Service/Interfaces/ISezioneService.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using OAService.Service.Repository;
|
||||
using OAService.Service.Servizi.Interfacce;
|
||||
using StandManager.Domain.Entita;
|
||||
|
||||
namespace StandManager.Service.Interfaces;
|
||||
|
||||
public interface ISezioneService : ITService<Sezione>
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user