You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
341 B
C#

namespace Ds.Module.SignalR
{
public class NotificationService
{
public void SendNotification(string userId, string message)
{
//var hubContext = GlobalHost.ConnectionManager.GetHubContext<NotificationHub>();
//hubContext.Clients.User(userId).receiveNotification(message);
}
}
}