public void StartNotificationsForPosts(int categoryId, bool isVisible) { using (var db = new BlogDbContext()) { db.StartNotifications(Context, db.Posts, new { CategoryId = categoryId, IsVisible = isVisible }); } }
public void StartNotificationsForPosts(int categoryId) { using (var db = new BlogDbContext()) { db.StartNotifications(Context, db.Posts, new { CategoryId = categoryId }); } }