Пример #1
0
        public async Task <ActionResult <PostCountViewModel> > GetUserPostAndAppointmentCountAsync()
        {
            var posts = await _postQueries.GetUserPostAndAppointmentCountAsync();

            return(Ok(ResponseWrapper.CreateOkResponseWrapper(posts)));
        }