view announcements, users by page number

This commit is contained in:
Dimitar Byalkov
2023-03-29 22:46:46 +02:00
parent f858c47ff7
commit 5c0eb222a4
14 changed files with 141 additions and 21 deletions

View File

@@ -7,7 +7,7 @@ namespace StudentHouseDashboard.Models
{
public class Comment : GenericMessage, IVotable
{
public Comment(User author, string description, string title, DateTime publishDate) : base(author, description, title, publishDate)
public Comment(int id, User author, string description, string title, DateTime publishDate) : base(id, author, description, title, publishDate)
{
}