Вытащил солюшен на уровень выше, чтобы прощё было дотнетить
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build is failing
				
			
		
		
	
	
				
					
				
			
		
			Some checks failed
		
		
	
	continuous-integration/drone/push Build is failing
				
			This commit is contained in:
		| @@ -0,0 +1,17 @@ | ||||
| using ApplicationLayer.InfrastructureServicesInterfaces; | ||||
| using Domains.ApplicantDomain; | ||||
|  | ||||
| namespace ApplicationLayer.Services.Applicants.NeededServices; | ||||
|  | ||||
| /// Repository pattern for <see cref="Applicant"/> | ||||
| public interface IApplicantsRepository : IGenericRepository<Applicant> | ||||
| { | ||||
|     /// Find <see cref="Applicant"/> by Identifier | ||||
|     Task<Applicant> FindByUserIdAsync(Guid userId, CancellationToken cancellationToken); | ||||
|  | ||||
|     /// Get identifier of applicant by user identifier | ||||
|     Task<Guid> GetApplicantIdByUserId(Guid userId, CancellationToken cancellationToken); | ||||
|  | ||||
|     /// Returns value of NonResident property of applicant | ||||
|     Task<bool> IsApplicantNonResidentByUserId(Guid userId, CancellationToken cancellationToken); | ||||
| } | ||||
		Reference in New Issue
	
	Block a user