Example #1
0
 public static int GetDownvotes(int trackId)
 {
     int downvotes;
     using (RentItServiceClient proxy = new RentItServiceClient())
     {
         downvotes = proxy.CountAllDownvotes(trackId);
     }
     return downvotes;
 }