Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pedropaf committed Feb 6, 2015
1 parent 01af20c commit 888981b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SaasEcom.FrontEnd/content/Controllers/BillingController.cs.pp
Expand Up @@ -137,7 +137,7 @@
return RedirectToAction("Index");
}

public async Task<ActionResult> CancelSubscription(int id)
public ActionResult CancelSubscription(int id)
{
return View(new CancelSubscriptionViewModel { Id = id });
}
Expand Down Expand Up @@ -251,7 +251,7 @@
return View(model);
}

public async Task<ViewResult> BillingAddress()
public ViewResult BillingAddress()
{
// TODO: Get Billing address from your model
var model = new BillingAddress();
Expand All @@ -260,7 +260,7 @@
}

[HttpPost]
public async Task<ActionResult> BillingAddress(BillingAddress model)
public ActionResult BillingAddress(BillingAddress model)
{
if (ModelState.IsValid)
{
Expand Down

0 comments on commit 888981b

Please sign in to comment.