Created
July 3, 2014 08:03
-
-
Save ArveSystad/929f1e4abcf89a475e4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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