public async Task <IActionResult> DeleteCall(int id)
        {
            bool success = await _service.DeleteCall(id);

            if (success)
            {
                return(Ok());
            }
            else
            {
                return(NotFound());
            }
        }