Exemplo n.º 1
0
        public async Task WelcomeThree(WelcomeThreeViewModel model)
        {
            string requestURL = "/path/{Parameter}";
            var    httpMethod = BaseNetworkAccessEnum.Get;
            var    parameters = new Dictionary <string, ParameterTypedValue>()
            {
                //{"Parameter", model.Property},
            };

            await _NetworkInterface(requestURL, parameters, httpMethod);
        }
Exemplo n.º 2
0
        public async Task WelcomeThree(WelcomeThreeViewModel model, Action completeAction)
        {
            await _Service.WelcomeThree(model);

            completeAction();
        }