Beispiel #1
0
        public static async Task <MutationCreateCompanyAndXUsersTxn_Output> TestMutationCreateCompanyAndXUsersTxn()
        {
            IMGTExchangeClient clientMGT = new MGTExchangeClient();
            string             _url      = "http://10.18.24.67:8082/";
            string             _token    = "token";

            MutationCreateCompanyAndXUsersTxn_Input input = new MutationCreateCompanyAndXUsersTxn_Input
            {
                company = new company
                {
                    name        = "company10",
                    description = "one",
                    email       = "*****@*****.**",
                    password    = "******"
                },
                userstocreate = 10,
                url           = _url,
                token         = _token
            };

            MutationCreateCompanyAndXUsersTxn_Output output =
                await clientMGT.MutationCreateCompanyAndXUsersTxn(input : input);

            return(output);
        }