public ActionResult <int> RestoreCall(int call_id) { int numberOfAffectedRows = _repository.RestoreCall(call_id); return(Ok(numberOfAffectedRows)); }