public async Task WelcomeTwo(WelcomeTwoViewModel 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 WelcomeTwo(WelcomeTwoViewModel model, Action completeAction) { await _Service.WelcomeTwo(model); completeAction(); }