diff --git a/News/News/Controller.cs b/News/News/Controller.cs index c7f5e97..250ec87 100644 --- a/News/News/Controller.cs +++ b/News/News/Controller.cs @@ -56,5 +56,21 @@ namespace News Console.WriteLine(e.InnerException.Message); } } + + public Comment? GetComment(int UserId, int NewsId) + { + return _context.Comments.FirstOrDefault(x => x.UserId == UserId && x.NewsId == NewsId); + } + + public void RemoveComment(Comment comment) + { + _context.Comments.Remove(comment); + _context.SaveChanges(); + } + + public void UpdateComment(Comment comment) + { + _context.SaveChanges(); + } } } diff --git a/News/News/EnterText.txt b/News/News/EnterText.txt index c7e2d48..2e7c2a9 100644 --- a/News/News/EnterText.txt +++ b/News/News/EnterText.txt @@ -4,4 +4,5 @@ 3 Получить всех авторов 4 Получить всех пользователей 5 Добавить пользователя -6 Запустить тестирование всех функций \ No newline at end of file +6 Запустить тестирование всех функций +7 Изменить текст комментария или удалить комментарий \ No newline at end of file diff --git a/News/News/Program.cs b/News/News/Program.cs index 201c34b..7afe19d 100644 --- a/News/News/Program.cs +++ b/News/News/Program.cs @@ -47,6 +47,25 @@ namespace News case "6": Test(controller, context); break; + case "7": + Console.WriteLine($"Введите Id новости Рё Id пользователя"); + var userId = Convert.ToInt32(Console.ReadLine()); + var newsId = Convert.ToInt32(Console.ReadLine()); + var comment = controller.GetComment(userId, newsId); + Console.WriteLine($"1 для изменения, 2 для удаления"); + var r = Console.ReadLine(); + if (r == "1") + { + Console.WriteLine($"Введите новый текст комментария"); + var s = Console.ReadLine(); + comment.CommentText = s; + controller.UpdateComment(comment); + } + if (r == "2") + { + controller.RemoveComment(comment); + } + break; default: Console.WriteLine("Такой операции нет"); break;