Example #1
0
        public async Task <ActionResult <IEnumerable <Post> > > GetPostsByResearchID(string researchId)
        {
            var posts = await _repository.GetPostsByResearchID(researchId);

            return(Ok(posts));
        }