Ejemplo n.º 1
0
        public ActionResult <int> RestoreCall(int call_id)
        {
            int numberOfAffectedRows = _repository.RestoreCall(call_id);

            return(Ok(numberOfAffectedRows));
        }