Пример #1
0
 //An asynchronous Task which takes in the id which is sent to proxy method, API call made to get post from db
 public async Task <Posts> GetPost(string postId)
 {
     return(await _postsProxy.GetPost(postId));
 }