remove user consent services

This commit is contained in:
Sergio Matias Urquin
2025-05-12 21:29:33 -06:00
parent 4c8c115ff5
commit ae7ee3a93e
2 changed files with 0 additions and 67 deletions

View File

@@ -125,19 +125,5 @@ namespace Core.Cerberos.Provider.Contracts
/// <param name="email">The user's email.</param>
/// <returns>A <see cref="{Task{TokenAdapter}}"/> representing the asynchronous execution of the service.</returns>
Task<TokenAdapter?> GetTokenAdapter(string email);
/// <summary>
/// Get Consent Form PDF.
/// </summary>
/// <returns>A <see cref="{Task{BlobDownloadUriAdapter}}"/> representing
/// the asynchronous execution of the service.</returns>
Task<BlobDownloadUriAdapter> GetConsentFormPDFService();
/// <summary>
/// Accept user consent form.
/// </summary>
/// <returns>A <see cref="{Task{UserAdapter}}"/> representing
/// the asynchronous execution of the service.</returns>
Task<UserAdapter?> AcceptUserConsentFormService();
}
}