コード例 #1
0
        public IEnumerable <ConfirmacaoPagamentoOrigem> Fetch(ConfirmacaoPagamentoOrigem entity)
        {
            var paramId_origem = new SqlParameter("@id_origem", entity.Id);
            var paramDs_origem = new SqlParameter("@ds_origem", entity.Descricao);

            var dbResult = DataHelper.List <ConfirmacaoPagamentoOrigem>("PR_CONFIRMACAO_PAGAMENTO_ORIGEM_CONSULTAR", paramId_origem, paramDs_origem);

            return(dbResult);
        }
コード例 #2
0
 public IEnumerable <ConfirmacaoPagamentoOrigem> Buscar(ConfirmacaoPagamentoOrigem objModel)
 {
     return(_confirmacaoPgtoOrigemRepository.Fetch(objModel));
 }
コード例 #3
0
 public int Save(ConfirmacaoPagamentoOrigem entity)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public IEnumerable <ConfirmacaoPagamentoOrigem> FetchForGrid(ConfirmacaoPagamentoOrigem entity, DateTime since, DateTime until)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 public IEnumerable <ConfirmacaoPagamentoOrigem> FetchForGrid(ConfirmacaoPagamentoOrigem entity)
 {
     throw new NotImplementedException();
 }