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

            await _NetworkInterface(requestURL, parameters, httpMethod);
        }
        public async Task YourMethodName(NotifyClaimViewModel model, Action completeAction)
        {
            await _Service.YourMethodName(model);

            completeAction();
        }