using System.Threading.Tasks; using Volo.Abp.DependencyInjection; namespace Kurs.Notifications.Domain.NotificationProviders; public interface INotification : ITransientDependency { Task Send(string[] NotificationType, string NotificationMessage); }