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