15 lines
331 B
C#
15 lines
331 B
C#
using Application.Contracts.Interfaces;
|
|
using Core.Entities;
|
|
using Infrastructure.Data;
|
|
|
|
namespace Infrastructure.Repositories
|
|
{
|
|
public class PacientRepository : BaseRepository<Pacient>, IPacientRepository
|
|
{
|
|
public PacientRepository(HealthcareManagerContext context) : base(context)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|