using System.Collections.Generic; using System.Threading.Tasks; namespace Strata.Stratasphere.Biz.Email { public interface IEmailService { Task ProcessEmail(string processName, IEnumerable recipients, int logId, string batchGuid); Task SendPostProcessJobFailedEmail(string processName, IEnumerable recipients, string batchJobPage); Task SendPostProcessJobEmail(string processName, IEnumerable recipients, string batchJobPage); } }