17 lines
719 B
C#
17 lines
719 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Web;
|
|
|
|
namespace webapi.Infrastructure.Services
|
|
{
|
|
public interface IEmailService
|
|
{
|
|
Task SendRegisterNewEmail(string username, string password, string email);
|
|
Task SendRegisterExistingEmail(string username, string email);
|
|
Task SendUserFlatApprovalEmail(Guid pmcId, IEnumerable<string> approverEmails, string userName, string flatTitle);
|
|
Task SendUserFlatApprovalRequestApprovedEmail(Guid pmcId, string email, string userName, string flatTitle);
|
|
Task SendUserFlatApprovalRequestRejectedEmail(Guid pmcId, string email, string userName, string flatTitle);
|
|
}
|
|
} |