Skip to content

Instantly share code, notes, and snippets.

@ArveSystad
Created July 3, 2014 08:03
Show Gist options
  • Save ArveSystad/929f1e4abcf89a475e4f to your computer and use it in GitHub Desktop.
Save ArveSystad/929f1e4abcf89a475e4f to your computer and use it in GitHub Desktop.
public class InlineArticleProductController : ActionControllerBase
{
public ActionResult Index(ProductVariant currentContent)
{
var model = new InlineArticleProduct
{
Name = "A hat",
Price = 250
};
return PartialView(model);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment