Moved interfaces, created new folders for visa requests and handlers

This commit is contained in:
2024-08-15 18:26:14 +03:00
parent b02e30ba2a
commit 604081e047
15 changed files with 37 additions and 26 deletions

View File

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