Skip to content

Instantly share code, notes, and snippets.

@fatihdgn
Created October 31, 2017 20: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 fatihdgn/f5e9b5b26d0363829632ff49d9a8bad6 to your computer and use it in GitHub Desktop.
Save fatihdgn/f5e9b5b26d0363829632ff49d9a8bad6 to your computer and use it in GitHub Desktop.
using Models;
public static class CategoryProvider
{
public static List<Category> Categories = Enumerable.Range(1, 5).Select(i => new Category { Name = $"Category {i}" }).ToList();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment