Пример #1
0
        private async Task <Response> MarkNotificationsAsSeen(int notificationId)
        {
            var user = Context.CurrentUser;
            await notificationManager.MarkNotificationsAsSeen(user.UserName, notificationId);

            return(HttpStatusCode.OK);
        }