9 lines
270 B
C#
9 lines
270 B
C#
using Domains.ApplicantDomain;
|
|
using Infrastructure.Database.Generic;
|
|
|
|
namespace Infrastructure.Database.Applicants.Repositories
|
|
{
|
|
/// Repository pattern for <see cref="Applicant"/>
|
|
public interface IApplicantsRepository : IGenericRepository<Applicant> { }
|
|
}
|