public IHttpActionResult GetPostList(Guid userId)
 {
     using (var bal = new UserPostBAL())
     {
         var postList = bal.GetUserPosts(userId);
         return(Ok(postList));
     }
 }
 public IHttpActionResult GetPostList(Guid userId)
 {
     return(Run(() =>
     {
         using (var bal = new UserPostBAL())
         {
             return bal.GetUserPosts(userId);
         }
     }));
 }