namespace MarcoBMS.Services.Service { public interface IEmailSender { Task SendEmailAsync(string toEmail, string subject, string body); } }