using FindAndDrive.Domain.Interfaces.Repositories; using FindAndDrive.Domain.Models.Entities; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace FindAndDrive.Persistence.Repository { public class ApplicantAuditLogRepository : GenericRepository, IApplicantAuditLogRepository { private readonly DefaultContext _context; public ApplicantAuditLogRepository(DefaultContext context): base(context) { _context = context; } } }