using System; using System.Collections.Generic; namespace AsbCloudApp.Services { public interface IEmailService { void EnqueueSend(IEnumerable addresses, string subject, string htmlBody); } }