Beispiel #1
0
        public async Task <IActionResult> GetPostsAsync()
        {
            var posts = await _dataFactory.GetAllOfTypeAsync <IPost>().ConfigureAwait(false);

            return(Ok(posts));
        }