public async Task <IHttpActionResult> GetAll(int page = 1)
        {
            var result = await noticeService.FindAll(page);

            return(Json(result));
        }