Ejemplo n.º 1
0
        public string CreateUser(User newUser)
        {
            if (socketService == null)
            {
                socketService = new SocketService();
            }
            string id = socketService.AddUser(newUser);

            return(id);
        }