Files
FACULTATE-HEALTHCARE_MANAGER/backend/Infrastructure/Services/PostgreSQL/MedicalHistoryRepository.cs
T

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)
{
}
}
}