using System.Threading.Tasks; namespace Microsoft.eShopWeb.ApplicationCore.Interfaces; public interface IEmailSender { void SendEmailAsync(string email, string subject, string message); }