public async Task <IActionResult> GetCommentsList(Guid Id, int skipCount = 0, int pageSize = 10) { var apiMsg = await ApiMessage.Wrap(async() => { return(await contentBusiness.GetComments(Id, skipCount, pageSize)); }); return(Json(apiMsg)); }