INotificationService.cs 363 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using GreenTree.Nachtragsmanagement.Core.Domain.Misc;
  7. namespace GreenTree.Nachtragsmanagement.Services.Notification
  8. {
  9. public interface INotificationService
  10. {
  11. string GenerateMailBody(MailNotification mailNotification);
  12. }
  13. }