Last active
August 29, 2015 14:08
-
-
Save CoreyKaylor/00fb66991dcd6ceaa1ce 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
using MvcSample.Web.Models; | |
namespace MvcSample.Web | |
{ | |
public class HomeController | |
{ | |
public User Index() | |
{ | |
var user = new User | |
{ | |
Name = "Test", | |
Address = "My address" | |
}; | |
return user; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment