public async Task <IActionResult> Delete(Guid hallId)
        {
            await _hallService.RemoveAsync(hallId);

            return(NoContent());
        }