17 lines
458 B
C#
17 lines
458 B
C#
using OAService.Service.Servizi.Implementazioni;
|
|
using StandManager.Domain.Entita;
|
|
using StandManager.Service.Interfaces;
|
|
using StandManager.Service.Repository;
|
|
|
|
namespace StandManager.Service;
|
|
|
|
public class ReferenteService : TService<Referente>, IReferenteService
|
|
{
|
|
private readonly IStandManagerUnitOfWork _unitOfWork;
|
|
|
|
public ReferenteService(IStandManagerUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
_unitOfWork = unitOfWork;
|
|
}
|
|
}
|