public Object GetNoticesBySchool(int schoolid, int pageid)
        {
            var notices = BNotice.GetNoticeBySchool(schoolid, pageid - 1);

            if (notices == null)
            {
                return(new { result = false, info = "Não foram encontrados anuncios." });
            }
            return(new { result = true, data = notices });
        }