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