Exemplo n.º 1
0
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new TimerTalkContext(
                       serviceProvider.GetRequiredService <DbContextOptions <TimerTalkContext> >()))
            {
                // Look for any movies.
                if (context.Talks.Any())
                {
                    return;   // DB has been seeded
                }

                context.Talks.AddRange(
                    new Talk
                {
                    Added      = DateTime.Now,
                    Name       = "TestName",
                    TimerTicks = new List <TimerTick>(),
                    UserId     = "*****@*****.**"
                }

                    //     new Movie
                    //     {
                    //         Title = "Ghostbusters ",
                    //         ReleaseDate = DateTime.Parse("1984-3-13"),
                    //         Genre = "Comedy",
                    //         Price = 8.99M
                    //     },

                    //     new Movie
                    //     {
                    //         Title = "Ghostbusters 2",
                    //         ReleaseDate = DateTime.Parse("1986-2-23"),
                    //         Genre = "Comedy",
                    //         Price = 9.99M
                    //     },

                    //   new Movie
                    //   {
                    //       Title = "Rio Bravo",
                    //       ReleaseDate = DateTime.Parse("1959-4-15"),
                    //       Genre = "Western",
                    //       Price = 3.99M
                    //   }
                    );
                context.SaveChanges();
            }
        }
Exemplo n.º 2
0
 public TimerTickRepository(TimerTalkContext foodDbContext)
 {
     _timerTalkContext = foodDbContext;
 }
Exemplo n.º 3
0
 public TalksRepository(TimerTalkContext timerTalkContext)
 {
     _timerTalkContext = timerTalkContext;
 }