public ApiResult Upload([FromBody] GalleryCondition galleryCondition) { List <GalleryDTO> list = _galleryService.GetListPage(galleryCondition.CurrentPage, galleryCondition.PageSize, galleryCondition); int total = _galleryService.GetCount(galleryCondition); return(ApiResult.Success(new { list, total })); }