Example #1
0
 public static int GetUpvotes(int trackId)
 {
     int upvotes;
     using (RentItServiceClient proxy = new RentItServiceClient())
     {
         upvotes = proxy.CountAllUpvotes(trackId);
     }
     return upvotes;
 }