public CreateUserResponse CreateAccount(CreateUserRequestMessage request)
        {
            CreateUserResponse response;
            AccountManager acctmanager = new AccountManager();
            response = acctmanager.CreateAccount(request.patient);
            return response;

        }
예제 #2
0
        public CreateUserResponse CreateAccount(CreateUserRequestMessage request)
        {
            CreateUserResponse response;
            AccountManager     acctmanager = new AccountManager();

            response = acctmanager.CreateAccount(request.patient);
            return(response);
        }