public async Task <ActionResult <int> > Delete(int id)
 {
     return(Ok(await _persistencia.DeleteValue(id)));
 }