9 lines
249 B
C#
9 lines
249 B
C#
using OAService.Service.Repository;
|
|
using StandManager.Domain.Entita;
|
|
|
|
namespace StandManager.Service.Repository;
|
|
|
|
public interface IStandManagerUnitOfWork : IUnitOfWork
|
|
{
|
|
public IStandManagerGenericRepository<Utente> UtenteRepository { get; }
|
|
} |