public HomeController(
     IConfiguration configuration,
     ServiceLocation serviceLocation,
     MVPDbContext dbContext)
 {
     _configuration   = configuration;
     _serviceLocation = serviceLocation;
     _dbContext       = dbContext;
 }
 public DashboardController(
     SitesService sitesService,
     AppsContainer appsContainer,
     FoldersService foldersService,
     FilesService filesService,
     MVPDbContext dbContext)
 {
     _sitesService   = sitesService;
     _appsContainer  = appsContainer;
     _foldersService = foldersService;
     _filesService   = filesService;
     _dbContext      = dbContext;
 }