-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #340 from UKGovernmentBEIS/dvs-311-removal-emails-…
…duty-to-remove feat(remove-service): email notification and status update changes
- Loading branch information
Showing
12 changed files
with
198 additions
and
33 deletions.
There are no files selected for viewing
3 changes: 2 additions & 1 deletion
3
DVSRegister.BusinessLogic/Services/RemoveProvider2i/IRemoveProvider2iService.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,13 +1,14 @@ | ||
using DVSRegister.BusinessLogic.Models.CAB; | ||
using DVSRegister.CommonUtility.Models; | ||
using DVSRegister.CommonUtility.Models.Enums; | ||
|
||
namespace DVSRegister.BusinessLogic.Services | ||
{ | ||
public interface IRemoveProvider2iService | ||
{ | ||
//Remove provider | ||
public Task<ProviderProfileDto?> GetProviderAndServiceDetailsByRemovalToken(string token, string tokenId); | ||
public Task<GenericResponse> UpdateRemovalStatus(string token, string tokenId, ProviderProfileDto providerDto, string loggedInUserEmail); | ||
public Task<GenericResponse> UpdateRemovalStatus(TeamEnum team, string token, string tokenId, ProviderProfileDto providerDto, string loggedInUserEmail); | ||
public Task<bool> RemoveRemovalToken(string token, string tokenId, string loggedInUserEmail); | ||
} | ||
} |
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
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
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
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
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
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
8 changes: 8 additions & 0 deletions
8
DVSRegister.CommonUtility/Models/Email/ProviderRemovalRequestConfirmed.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace DVSRegister.CommonUtility.Models | ||
{ | ||
public class ProviderRemovalRequestConfirmed | ||
{ | ||
public string Id { get; set; } | ||
public string RecipientName { get; set; } | ||
} | ||
} |
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
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
Oops, something went wrong.