15 lines
342 B
C#
15 lines
342 B
C#
using Application.Contracts.Database;
|
|
using Core.Entities;
|
|
using Infrastructure.Data;
|
|
|
|
namespace Infrastructure.Services.PostgreSQL
|
|
{
|
|
public class DoctorRepository : BasePostgreSQLRepository<Doctor>, IDoctorRepository
|
|
{
|
|
public DoctorRepository(HealthcareManagerContext context) : base(context)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|