Working delete and hide of the post

This commit is contained in:
2017-06-12 16:15:34 +03:00
parent b1dcf5f72d
commit 41991a68dd
4 changed files with 45 additions and 13 deletions

View File

@@ -13,7 +13,7 @@ namespace BL.Interfaces
FoorumDTO Get(int id);
FoorumDTO Add(FoorumDTO foorum);
FoorumDTO Update(FoorumDTO foorum);
void Hide(int id);
void Hide(int id, bool hide=true);
void Delete(int id);
void AddPost(int id, PostDTO post);