Exemplo n.º 1
0
        public async Task DeleteChapterEmail(Guid currentMemberId, Guid chapterId, EmailType type)
        {
            await AssertMemberIsChapterAdmin(currentMemberId, chapterId);

            await _emailRepository.DeleteChapterEmail(chapterId, type);
        }