public void addComentAndSoundToLocation(string location, byte[] sound, Comments comments, string code)
 {
     Comments commentPassed = new Comments();
     commentPassed.sound = convertBytesToString(sound);
     commentPassed.typeOfCommentsId = comments.typeOfCommentsId;
     commentPassed.isText = comments.isText;
     commentPassed.userId = comments.userId;
     commentPassed.description = comments.description;
     string comment = serializer.Serialize(commentPassed);
     CommentsWebServicesController commentsWebServicesController = new CommentsWebServicesController();
     commentsWebServicesController.addCommentAndSoundToLocation(location, comment, code);
 }