using Entities; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.UI.Services; namespace Model.Service; public class EmailSender : IEmailSender { private IEmailSender _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(); } }