Exemplo n.º 1
0
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new CinemaContext(
                       serviceProvider.GetRequiredService <DbContextOptions <CinemaContext> >()))
            {
                if (context.Movies.Any())
                {
                    return;
                }
                var yourName = new Movie()
                {
                    Title       = "Your Name",
                    PosterPath  = "images/posters/YourName.png",
                    Director    = "Makoto Shinkai",
                    Length      = new TimeSpan(1, 46, 0),
                    Description =
                        "Mitsuha Miyamizu, a high school girl, yearns to live the life of a boy in the bustling city of " +
                        "Tokyo—a dream that stands in stark contrast to her present life in the countryside. Meanwhile in the city, " +
                        "Taki Tachibana lives a busy life as a high school student while juggling his part-time job and " +
                        "hopes for a future in architecture. One day, Mitsuha awakens in a room that is not her own " +
                        "and suddenly finds herself living the dream life in Tokyo—but in Taki's body! " +
                        "Elsewhere, Taki finds himself living Mitsuha's life in the humble countryside.In pursuit of " +
                        "an answer to this strange phenomenon, they begin to search for one another."
                };
                var yugioh = new Movie()
                {
                    Title       = "YuGiOh - Dark Side of Dimensions",
                    PosterPath  = "images/posters/YuGiOh.png",
                    Director    = "Satoshi Kuwabara",
                    Length      = new TimeSpan(2, 10, 0),
                    Description =
                        "Set six months after the events of the original Yu-Gi-Oh! manga, Yuugi Mutou and his friends are in their " +
                        "final year of high school and are talking about what they will do in the future. " +
                        "Meanwhile, Seto Kaiba has commissioned an excavation to retrieve the disassembled Millennium " +
                        "Puzzle from the ruins of the \"Shrine of the Underworld.\" The item had previously housed " +
                        "the soul of his rival, Atem, whom he hopes to revive in order to settle their score. " +
                        "The excavation is interrupted by a mysterious man, who faces Kaiba in a game of " +
                        "\"Magic & Wizards\" and steals two pieces of the recovered Puzzle. What is his ulterior motive?"
                };
                var eva = new Movie()
                {
                    Title       = "The End of Evangelion",
                    PosterPath  = "images/posters/EndOfEva.png",
                    Director    = "Hideaki Anno",
                    Length      = new TimeSpan(1, 27, 0),
                    Description =
                        "With the final Angel vanquished, Nerv has one last enemy left to face—the humans under Seele's command." +
                        "Left in a deep depression nearing the end of the original series, an indecisive Shinji Ikari struggles with the ultimatum presented " +
                        "to him: to completely accept mankind's existence, or renounce humanity's individuality. Meanwhile, at the core of a compromised " +
                        "Nerv, Gendou Ikari and Rei Ayanami approach Lilith in an attempt to realize their own ideals concerning the future of the world."
                };
                var lovelive = new Movie()
                {
                    Title       = "Love Live! The School Idol Movie",
                    PosterPath  = "images/posters/LL.png",
                    Director    = "Kyogoku Takahiko",
                    Length      = new TimeSpan(1, 42, 0),
                    Description =
                        "Hot on the heels of the third year students' graduation, μ's is invited to New York in hopes of spreading the joy of school idols to other parts of the world. " +
                        "Due to the events of the recent Love Live!, μ's has reached eminent stardom which results in crowds swarming them whenever they appear in public. " +
                        "With the increased attention, however, comes a difficult choice."
                };

                var nogamenolife = new Movie()
                {
                    Title       = "No Game No Life Zero",
                    PosterPath  = "images/posters/NGNLZ.png",
                    Director    = "Atsuko Ishizuka",
                    Length      = new TimeSpan(1, 46, 0),
                    Description =
                        "In ancient Disboard, Riku is an angry, young warrior intent on saving humanity from the warring Exceed, " +
                        "the sixteen sentient species, fighting to establish the \"One True God\" amongst the Old Deus. " +
                        "In a lawless land, humanity's lack of magic and weak bodies have made them easy targets for the other Exceed, " +
                        "leaving the humans on the brink of extinction. One day, however, hope returns to humanity " +
                        "when Riku finds a powerful female Ex-machina, whom he names Schwi, in an abandoned elf city. " +
                        "Exiled from her Cluster because of her research into human emotions, Schwi is convinced that " +
                        "humanity has only survived due to the power of these feelings and is determined to understand " +
                        "the human heart. Forming an unlikely partnership in the midst of the overwhelming chaos, " +
                        "Riku and Schwi must now find the answers to their individual shortcomings in each other, " +
                        "and discover for themselves what it truly means to be human as they fight for their lives " +
                        "together against all odds. Each with a powerful new ally in tow, it is now up to them to " +
                        "prevent the extinction of the human race and establish peace throughout Disboard!"
                };
                // Add movies to db
                context.Movies.Add(yourName);
                context.Movies.Add(yugioh);
                context.Movies.Add(eva);
                context.Movies.Add(lovelive);
                context.Movies.Add(nogamenolife);

                //create rooms
                var mikuRoom = new Room()
                {
                    RoomName  = "Room Miku",
                    NumOfCols = 15,
                    NumOfRows = 8
                };

                var nicoRoom = new Room()
                {
                    RoomName  = "Room Nico",
                    NumOfCols = 17,
                    NumOfRows = 9
                };

                var aquaRoom = new Room()
                {
                    RoomName  = "Room Aqua",
                    NumOfCols = 14,
                    NumOfRows = 5
                };

                var poiRoom = new Room()
                {
                    RoomName  = "Room Poi",
                    NumOfCols = 20,
                    NumOfRows = 11
                };
                context.Rooms.Add(mikuRoom);
                context.Rooms.Add(nicoRoom);
                context.Rooms.Add(aquaRoom);
                context.Rooms.Add(poiRoom);

                // Create shows
                var programs = new List <Show>()
                {
                    new Show()
                    {
                        Movie     = nogamenolife,
                        Room      = mikuRoom,
                        StartTime = DateTime.Parse("2019-03-20 18:30:00")
                    },
                    new Show()
                    {
                        Movie     = nogamenolife,
                        Room      = nicoRoom,
                        StartTime = DateTime.Parse("2019-03-24 11:00:00")
                    },
                    new Show()
                    {
                        Movie     = nogamenolife,
                        Room      = poiRoom,
                        StartTime = DateTime.Parse("2019-04-02 15:45:00")
                    },
                    new Show()
                    {
                        Movie     = lovelive,
                        Room      = poiRoom,
                        StartTime = DateTime.Parse("2019-03-21 13:30:00")
                    },
                    new Show()
                    {
                        Movie     = lovelive,
                        Room      = nicoRoom,
                        StartTime = DateTime.Parse("2019-03-26 11:45:00")
                    },
                    new Show()
                    {
                        Movie     = lovelive,
                        Room      = aquaRoom,
                        StartTime = DateTime.Parse("2019-04-04 16:45:00")
                    },
                    new Show()
                    {
                        Movie     = yourName,
                        Room      = aquaRoom,
                        StartTime = DateTime.Parse("2019-03-20 20:30:00")
                    },
                    new Show()
                    {
                        Movie     = yourName,
                        Room      = nicoRoom,
                        StartTime = DateTime.Parse("2019-03-30 14:00:00")
                    },
                    new Show()
                    {
                        Movie     = yourName,
                        Room      = mikuRoom,
                        StartTime = DateTime.Parse("2019-04-06 08:30:00")
                    },
                    new Show()
                    {
                        Movie     = eva,
                        Room      = poiRoom,
                        StartTime = DateTime.Parse("2019-03-20 17:45:00")
                    },
                    new Show()
                    {
                        Movie     = eva,
                        Room      = mikuRoom,
                        StartTime = DateTime.Parse("2019-03-31 12:15:00")
                    },
                    new Show()
                    {
                        Movie     = eva,
                        Room      = aquaRoom,
                        StartTime = DateTime.Parse("2019-04-08 15:30:00")
                    },
                    new Show()
                    {
                        Movie     = yugioh,
                        Room      = mikuRoom,
                        StartTime = DateTime.Parse("2019-03-23 18:15:00")
                    },
                    new Show()
                    {
                        Movie     = yugioh,
                        Room      = nicoRoom,
                        StartTime = DateTime.Parse("2019-03-27 14:00:00")
                    },
                    new Show()
                    {
                        Movie     = yugioh,
                        Room      = poiRoom,
                        StartTime = DateTime.Parse("2019-04-04 15:15:00")
                    }
                };
                foreach (var prog in programs)
                {
                    for (int i = 0; i < prog.Room.NumOfRows; i++)
                    {
                        for (int j = 0; j < prog.Room.NumOfCols; j++)
                        {
                            context.Seats.Add(
                                new Seat()
                            {
                                Row   = i,
                                Col   = j,
                                Room  = prog.Room,
                                Show  = prog,
                                State = State.Free
                            });
                        }
                    }
                    context.Shows.Add(prog);
                }
                context.SaveChanges();
            }
        }
Exemplo n.º 2
0
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new CinemaContext(
                       serviceProvider.GetRequiredService <
                           DbContextOptions <CinemaContext> >()))
            {
                // Look for any movies.
                if (context.Movies.Any())
                {
                    return;   // DB has been seeded
                }

                context.Movies.AddRange(
                    new Movie
                {
                    Image       = "https://resizing.flixster.com/t1FwiRY3Si5W6wVqBxhYDuOyyqc=/fit-in/200x296.2962962962963/v1.bTsxMzIzMTg2MztqOzE4MzMzOzEyMDA7NjA3Mjs5MDAw",
                    Title       = "Jumanji: The Next Level",
                    ReleaseDate = DateTime.Parse("13/12/2019"),
                    Genre       = "Fantasy Comedy",
                    Rating      = 9,
                    Description = " In Jumanji: The Next Level, the gang is back but the game has changed. As they return to Jumanji to rescue one of their own, they discover that nothing is as they expect. The players will have to brave parts unknown and unexplored, from the arid deserts to the snowy mountains, in order to escape the world's most dangerous game.",
                    Video       = "https://www.youtube.com/watch?v=rBxcF-r9Ibs"
                },
                    new Movie
                {
                    Image       = "https://resizing.flixster.com/uXhQPMKSFUVZlDckNlAR8s5zBZY=/fit-in/200x296.2962962962963/v1.bTsxMzIwMzIxODtqOzE4MzMyOzEyMDA7NTQwOzgxMA",
                    Title       = "Frozen II",
                    ReleaseDate = DateTime.Parse("21/11/2019"),
                    Genre       = "Animation",
                    Rating      = 7,
                    Description = "Why was Elsa born with magical powers? The answer is calling her and threatening her kingdom. Together with Anna, Kristoff, Olaf and Sven, she'll set out on a dangerous but remarkable journey. In Frozen, Elsa feared her powers were too much for the world. In 'Frozen 2' she must hope they are enough. ",
                    Video       = "https://www.youtube.com/watch?v=nVW9QOIeqQg"
                },
                    new Movie
                {
                    Image       = "https://resizing.flixster.com/ZgauG4x91nIiP4-f9WoVka-eQcI=/fit-in/200x296.2962962962963/v1.bTsxMzIyMjU4NztqOzE4MzMzOzEyMDA7NjAwOzg4OQ",
                    Title       = "Star Wars: The Rise Of Skywalker",
                    ReleaseDate = DateTime.Parse("20/12/2019"),
                    Genre       = "Adventure",
                    Rating      = 9,
                    Description = "No one's ever really gone... Rey's journey continues and the Skywalker saga concludes in Star Wars: The Rise of Skywalker, coming December 2019. ",
                    Video       = "https://www.youtube.com/watch?v=8Qn_spdM5Zg"
                }


                    );
                context.SaveChanges();

                if (context.Halls.Any())
                {
                    return;   // DB has been seeded
                }

                context.Halls.AddRange(
                    new Hall
                {
                    HallName = "Hall 1",
                    NumSeats = 50
                },
                    new Hall
                {
                    HallName = "Hall 2",
                    NumSeats = 75
                },
                    new Hall
                {
                    HallName = "Hall 3",
                    NumSeats = 85
                },
                    new Hall
                {
                    HallName = "Hall 4",
                    NumSeats = 100
                }
                    );
                context.SaveChanges();
            }
        }