Files
FACULTATE-HEALTHCARE_MANAGER/backend/Infrastructure/Services/PostgreSQL/MedicalHistoryRepository.cs
T
2024-04-04 19:21:03 +03:00

15 lines
374 B
C#

using Application.Services.Database;
using Core.Entities;
using Infrastructure.Data;
namespace Infrastructure.Services.PostgreSQL
{
public class MedicalHistoryRepository : BasePostgreSQLRepository<MedicalHistory>, IMedicalHistoryRepository
{
public MedicalHistoryRepository(HealthcareManagerDatabase context) : base(context)
{
}
}
}