From 888981bf065c09fb87cce50be5c902bad8dd6bb5 Mon Sep 17 00:00:00 2001 From: pedropaf Date: Fri, 6 Feb 2015 09:02:25 -0500 Subject: [PATCH] minor --- .../content/Controllers/BillingController.cs.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) {