-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ER-1464_Show legal entity name (#834) +semver: patch
- Loading branch information
Showing
3 changed files
with
23 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
src/Shared/Recruit.Shared.Web/Services/ILegalEntityAgreementService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
using System.Threading.Tasks; | ||
using Esfa.Recruit.Vacancies.Client.Infrastructure.QueryStore.Projections.EditVacancyInfo; | ||
|
||
|
||
namespace Esfa.Recruit.Shared.Web.Services | ||
{ | ||
public interface ILegalEntityAgreementService | ||
{ | ||
Task<bool> HasLegalEntityAgreementAsync(string employerAccountId, long legalEntityId); | ||
Task<LegalEntity> GetLegalEntityAsync(string employerAccountId, long legalEntityId); | ||
Task<bool> HasLegalEntityAgreementAsync(string employerAccountId, LegalEntity legalEntity); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters