You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
884 B
31 lines
884 B
|
|
using Entities;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.UI.Services;
|
|
|
|
namespace Model.Service;
|
|
|
|
public class EmailSender : IEmailSender<AthleteEntity>
|
|
{
|
|
private IEmailSender<AthleteEntity> _emailSenderImplementation;
|
|
|
|
public async Task SendEmailAsync(string email, string subject, string htmlMessage)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task SendConfirmationLinkAsync(AthleteEntity user, string email, string confirmationLink)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task SendPasswordResetLinkAsync(AthleteEntity user, string email, string resetLink)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task SendPasswordResetCodeAsync(AthleteEntity user, string email, string resetCode)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |