Exemplo n.º 1
0
        public static void DeleteNotification(int id)
        {
            string sql = @"delete from dbo.Notification where ID = @data"; // deleting specified notification

            SQLDataAccess.DeleteNotification(sql, id);
        }