public IEnumerable<VotedProductDTO> GetVotes()
 {
     using (DelightServiceClient service = new DelightServiceClient())
     {
         var votes = service.GetVotes();
         return votes;
     }
 }