public async Task <CurrentInnovation> UpdateCurrentInnovation(CurrentInnovation currentInnovation)
        {
            var oldInnovation = await GetCurrentInnovationAsync(currentInnovation.Id);

            _dbContext.Entry(oldInnovation).CurrentValues.SetValues(currentInnovation);
            await _dbContext.SaveChangesAsync();

            return(currentInnovation);
        }
        public async Task <CurrentBuilding> UpdateCurrentBuilding(CurrentBuilding currentBuilding)
        {
            var oldBuilding = await GetCurrentBuildingAsync(currentBuilding.Id);

            _dbContext.Entry(oldBuilding).CurrentValues.SetValues(currentBuilding);
            await _dbContext.SaveChangesAsync();

            return(currentBuilding);
        }