Ejemplo n.º 1
0
 public string GetAllLinkedinAccountsOfUser(string UserId)
 {
     try
     {
         List <Domain.Socioboard.Domain.LinkedInAccount> objLinkedInAccount = objlinkedinaccrepo.GetAllLinkedinAccountsOfUser(Guid.Parse(UserId));
         return(new JavaScriptSerializer().Serialize(objLinkedInAccount));
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.StackTrace);
         return("Something Went Wrong");
     }
 }