public void GetAllNoticesFromCommunity()
        {
            var notices = noticeService.GetNoticesFromCommunity(2).Result;

            Assert.IsTrue(notices.Success);
            Assert.AreEqual(2, notices.Result.Count());
        }