public CMSController(ICMSIndexRepository cMSIndexRepository, IWebHostEnvironment hostingEnvironment)
 {
     _cMSIndexRepository = cMSIndexRepository;
     _hostingEnvironment = hostingEnvironment;
 }
 public HomeController(ICMSIndexRepository cMSIndexRepository,
                       IInboxRepository inboxRepository)
 {
     _cMSIndexRepository = cMSIndexRepository;
     _inboxRepository    = inboxRepository;
 }