public void SeedPlaces(IPlacesToVisitRepository repository)
        {
            repository.CreatePlace(new Place
                                       {
                                           Name = "Canberra",
                                           Description = "Capital city of Australia"
                                       });

            repository.CreatePlace(new Place
                                       {
                                           Name = "Toronto",
                                           Description = "Provincial capital of Ontario"
                                       });

            repository.CreatePlace(new Place
                                       {
                                           Name = "Auckland, New Zealand",
                                           Description = "A city in the north island"
                                       });
        }
        public void SeedPlaces(IPlacesToVisitRepository repository)
        {
            repository.CreatePlace(new Place
            {
                Name        = "Canberra",
                Description = "Capital city of Australia"
            });

            repository.CreatePlace(new Place
            {
                Name        = "Toronto",
                Description = "Provincial capital of Ontario"
            });

            repository.CreatePlace(new Place
            {
                Name        = "Auckland, New Zealand",
                Description = "A city in the north island"
            });
        }