// Fully sets up the HomeIndexViewModel by calling its extension methods defined below
 public static void FullSetUp(this HomeIndexViewModel homeIndexVM, BookstoreContext db)
 {
     homeIndexVM.SetFeaturedBooks(db);
     homeIndexVM.SetSections(db);
     homeIndexVM.SetOtherGenres(db);
 }