Ejemplo n.º 1
0
        public Retorno PesquisarLista(ListaFilterEntity filterEntity)
        {
            Retorno retorno = new Retorno();

            try
            {
                using (var uow = new UnitOfWork())
                {
                    retorno.Objeto  = uow.ListaRepository.PesquisarLista(filterEntity);
                    retorno.Sucesso = true;
                }
            }
            catch (Exception ex)
            {
                retorno.Sucesso  = false;
                retorno.Mensagem = ex.Message;
            }

            return(retorno);
        }
Ejemplo n.º 2
0
 public List <ListaEntity> PesquisarLista(ListaFilterEntity filterEntity)
 {
     throw new NotImplementedException();
 }