public void AddNotification(Notification notification) { var collection = Database.GetCollection<Notification>("Notifications"); collection.Insert(notification); }
public ActionResult AddNotification(Notification notification) { NotificationsService.Instance.AddNotification(notification); return Json(null); }