public IEnumerable <IModel> Get([FromUri] Documento documento = null)
 {
     if (documento.EstaVacio())
     {
         return(repo.GetAll());
     }
     else
     {
         return(repo.GetByFilter(documento));
     }
 }