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