Files
StandManager/StandManager.Service/UtenteService.cs
2025-12-01 09:56:00 +01:00

16 lines
445 B
C#

using OAService.Service.Servizi.Implementazioni;
using StandManager.Domain.Entita;
using StandManager.Service.Interfaces;
using StandManager.Service.Repository;
namespace StandManager.Service;
public class UtenteService : TService<Utente>, IUtenteService
{
private readonly IStandManagerUnitOfWork _unitOfWork;
public UtenteService(IStandManagerUnitOfWork unitOfWork) : base(unitOfWork)
{
_unitOfWork = unitOfWork;
}
}