8 lines
215 B
C#
8 lines
215 B
C#
using Domains.ApplicantDomain;
|
|
using Infrastructure.Database.Generic;
|
|
|
|
namespace Infrastructure.Database.Applicants.Repositories
|
|
{
|
|
public interface IApplicantsRepository : IGenericRepository<Applicant> { }
|
|
}
|