public HomeController(StaticContentDetailsRepository contentRepo, GalleriesRepository galleryRepo, TestimonialsRepository testimonialRepo, ContactFormsRepository contactFormRepo, OurTeamRepository ourTeamRepo, CertificatesRepository certificatesRepo, FoodGalleriesRepository foodGalleriesRepo, GalleryVideosRepository galleryVideosRepo)
 {
     _contentRepo       = contentRepo;
     _galleryRepo       = galleryRepo;
     _testimonialRepo   = testimonialRepo;
     _contactFormRepo   = contactFormRepo;
     _ourTeamRepo       = ourTeamRepo;
     _certificatesRepo  = certificatesRepo;
     _foodGalleriesRepo = foodGalleriesRepo;
     _galleryVideosRepo = galleryVideosRepo;
 }
 public GalleryVideosController(GalleryVideosRepository repo)
 {
     _repo = repo;
 }