13 lines
351 B
C#
13 lines
351 B
C#
using OAService.Service.Servizi.Implementazioni;
|
|
using StandManager.Domain.Entita;
|
|
using StandManager.Service.Interfaces;
|
|
using StandManager.Service.Repository;
|
|
|
|
namespace StandManager.Service;
|
|
|
|
public class RuoloService : TService<Ruolo>, IRuoloService
|
|
{
|
|
public RuoloService(IStandManagerUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
} |