Exemplo n.º 1
0
 public static void Initialize(HoroscopeContext context)
 {
     if (!context.Prediction.Any())
     {
         context.Prediction.AddRange(
             new Prediction()
             ,
             new Prediction()
             ,
             new Prediction()
             );;
         context.SaveChanges();
     }
 }
Exemplo n.º 2
0
 public HomeController(HoroscopeContext context)
 {
     db = context;
 }