public Response ObterTabelas( int clienteId, string clienteCnpj, int classeCliente, int simuladorId, bool crm, bool calculoAutomatico, int tabelaId) { try { var response = _tabelasDAO.ObterTabelas( new TabelasRequest { ClienteId = clienteId, ClienteCnpj = clienteCnpj, ClasseCliente = classeCliente, SimuladorId = simuladorId, CRM = crm, CalculoAutomatico = calculoAutomatico, TabelaId = tabelaId }).ToArray(); return(new Response { Sucesso = true, Lista = response }); } catch (Exception ex) { return(new Response { Sucesso = false, Mensagem = ex.ToString() }); } }