public IEnumerable <Solicitacao_DepositoDO> Consulta_Interface_Deposito(int intSolicitacaoPagamentoID, ref TransactionManager objTransaction) { try { var dynamicQuery = new DynamicSQLinq("Interface_Deposito") .Select( "Interface_Deposito_ID AS Interface_Deposito_ID", "Solicitacao_Pagamento_ID AS Solicitacao_Pagamento_ID", "E2_CODCLIENTE AS Cliente_CD", "E2_NOMFAV AS Cliente_Nome", "E2_CPFCNPJ AS Cliente_CPFCNPJ", "E2_BANCO AS Banco_CD", "E2_AGENCIA AS Banco_Agencia", "E2_CONTA AS Banco_Conta", "E2_TPCONTA AS Banco_ContaTipo", "E2_VALOR AS Deposito_Valor", "E2_VENCTO AS Data_Vencimento", "E2_PROCESSA AS Processado", "E2_DTPROCESS AS Data_Processamento", "E2_PAGO AS Pago"); dynamicQuery.Where <int>("Solicitacao_Pagamento_ID", f => f == intSolicitacaoPagamentoID).Distinct(true); return(dynamicQuery.ToSQL().Query <Solicitacao_DepositoDO>(objTransaction.ObjetoDeAcessoDados)); } catch (Exception) { throw; } }
public List <Solicitacao_Pagamento_Forma_PagtoDO> Solicitacao_Pagamento_Forma_Pagto(ref TransactionManager objTransaction) { try { var dynamicQuery = new DynamicSQLinq("Forma_Pagamento") .Select( "Forma_Pagamento_ID AS Forma_Pagamento_ID", "Forma_Pagamento_DS AS Forma_Pagamento_DS"); dynamicQuery.Where <int>("Forma_Pagamento.Forma_Pagamento_IsAtivo", f => f == 1); dynamicQuery.OrderBy("Forma_Pagamento.Forma_Pagamento_DS"); return(dynamicQuery.ToSQL().Query <Solicitacao_Pagamento_Forma_PagtoDO>(objTransaction.ObjetoDeAcessoDados).ToList()); } catch (Exception) { throw; } }