Files
studenthousedashboard/StudentHouseDashboard/Logic/ICommentRepository.cs
2023-06-09 11:51:42 +02:00

19 lines
1.0 KiB
C#

using Models;
namespace Logic;
public interface ICommentRepository
{
public List<Comment> GetAllCommentsOnAnnouncement(int announcementId);
public List<Comment> GetAllCommentsOnComplaint(int complaintId);
public List<Comment> GetAllCommentResponses(int commentId);
public Comment GetCommentById(int id);
public void UpdateComment(int id, string description);
public Comment CreateComment(User author, string description, string title, DateTime publishDate);
public void CreateCommentOnAnnouncement(User author, string description, string title, DateTime publishDate, int announcementId);
public void CreateCommentOnComplaint(User author, string description, string title, DateTime publishDate, int complaintId);
public void CreateResponseOnComment(User author, string description, string title, DateTime publishDate, int commentId);
public void DeleteComment(int id);
public void DeleteCommentOnAnnouncement(int commentId, int announcementId);
public void DeleteResponseOnComment(int responseId, int commentId);
}