internal static void Seed(RaceConditionsDbContext context)
 {
     foreach (var player in new List <Player>()
     {
         new ("Michael Jordan", "Scorer"),
         new ("Steph Curry", "Shooter"),
         new ("Dennis Rodman", "Rebounder"),
         new ("Gary Payton", "Defender")
     })
 public static void Seed(RaceConditionsDbContext context)
 {
     PlayerConfiguration.Seed(context);
 }