private static void SeedData(ICommandRepo repo, IEnumerable <Platform> platforms) { Console.WriteLine("--> Seeding new platforms..."); foreach (var platform in platforms) { if (!repo.ExternalPlatformExists(platform.ExternalId)) { repo.CreatePlatform(platform); } } }