| 1234567891011121314151617 |
- using GreenTree.Nachtragsmanagement.Core.Plugins;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Services.Misc
- {
- public interface INotificationService
- {
- /// <summary>
- /// Searches for all implementations of the INotificationPlugin
- /// </summary>
- IEnumerable<INotificationPlugin> GetNotificationPlugins();
- }
- }
|