using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace GreenTree.Maschinenbestellungen.Services.Notification { public interface INotificationService { /// /// Sends a notification to a specific target /// /// The single target. /// The subject. /// The message. public void SendNotification(string target, string subject, string message); /// /// Sends a notification to multiple targets /// /// The targets. /// The subject. /// The message. public void SendNotification(string[] targets, string subject, string message); } }