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