public void GetAllEventsAsync()
        {
            var result = noticeService.GetAllAsync().Result;

            Assert.IsTrue(result.Success);
            Assert.AreEqual(3, result.Result.Count());
        }