示例#1
0
        public List <Cliente> TraerTodos()
        {
            _clientes = _clientMapper.TraerTodos();

            if (_clientes == null)
            {
                throw new Exception("No hay clientes.");
            }

            return(_clientes);
        }