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