diff --git a/SaasEcom.FrontEnd/content/Controllers/BillingController.cs.pp b/SaasEcom.FrontEnd/content/Controllers/BillingController.cs.pp index 659ea9b..3f1b024 100644 --- a/SaasEcom.FrontEnd/content/Controllers/BillingController.cs.pp +++ b/SaasEcom.FrontEnd/content/Controllers/BillingController.cs.pp @@ -137,7 +137,7 @@ return RedirectToAction("Index"); } - public async Task CancelSubscription(int id) + public ActionResult CancelSubscription(int id) { return View(new CancelSubscriptionViewModel { Id = id }); } @@ -251,7 +251,7 @@ return View(model); } - public async Task BillingAddress() + public ViewResult BillingAddress() { // TODO: Get Billing address from your model var model = new BillingAddress(); @@ -260,7 +260,7 @@ } [HttpPost] - public async Task BillingAddress(BillingAddress model) + public ActionResult BillingAddress(BillingAddress model) { if (ModelState.IsValid) {