7 lines
231 B
C#
7 lines
231 B
C#
using ApplicationLayer.Common;
|
|
using Domains.ApplicantDomain;
|
|
|
|
namespace ApplicationLayer.Applicants;
|
|
|
|
/// Repository pattern for <see cref="Applicant"/>
|
|
public interface IApplicantsRepository : IGenericRepository<Applicant> { } |