Ejemplo n.º 1
0
        public bool AddComment(Comment newComment)
        {
            var comment = new UserServiceReference.Comment()
            {
                Comment1 = newComment.Comment1,
                PlaceId  = newComment.PlaceId
            };

            return(clientServiceClient.AddComment(comment));
        }