fix ci
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
4c21afda86
commit
cc834989d5
@ -1,31 +0,0 @@
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue