Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 28, 2020 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/08eaf582e458f5f66f599e3e2f2ead6e to your computer and use it in GitHub Desktop.
Save bjoerntx/08eaf582e458f5f66f599e3e2f2ead6e to your computer and use it in GitHub Desktop.
public IActionResult Index()
{
List<Customer> lDummyData = new List<Customer>();
lDummyData.Add(new Customer()
{
Company = "Text Control, LLC",
Firstname = "Tim",
Name = "Typer"
});
return View(lDummyData);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment