public async Task <ActionResult> GetAllFestivals()
        {
            var festivals = await _service.GetAllFestivals();

            return(Ok(festivals));
        }