Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created July 9, 2022 14:57
Show Gist options
  • Save dsibinski/237ce046ebdfcae6b4b7485f8c8c2006 to your computer and use it in GitHub Desktop.
Save dsibinski/237ce046ebdfcae6b4b7485f8c8c2006 to your computer and use it in GitHub Desktop.
public List<UserViewModel> AllUsers()
{
var usersViewModels = TestDataGenerator.GetTestUsers();
return usersViewModels.OrderBy(uvm => uvm.Name).ToList();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment