Moved repository interfaces to application layer, created blank visa requests handler

This commit is contained in:
2024-08-15 18:22:25 +03:00
parent c1a4acf414
commit b02e30ba2a
10 changed files with 34 additions and 20 deletions

View File

@@ -0,0 +1,6 @@
using Domains.ApplicantDomain;
namespace ApplicationLayer.Common;
/// Repository pattern for <see cref="Applicant"/>
public interface IApplicantsRepository : IGenericRepository<Applicant> { }