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

@@ -1,4 +1,5 @@
using Domains.ApplicantDomain;
using ApplicationLayer.Common;
using Domains.ApplicantDomain;
using Infrastructure.Database.Generic;
using Microsoft.EntityFrameworkCore;

View File

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