Ejemplo n.º 1
0
        public void TestBuscarPagamentoporId()
        {
            Pagamento aluno = new Pagamento();

            aluno.IdPessoa = 6;
            var pgt = SvcPagamento.BuscarPagamentoPorId(aluno);
        }
Ejemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            Pagamento pgt = new Pagamento();

            pgt.IdPessoa = Convert.ToInt32(Request.QueryString["Aluno"]);
            var pagamentos = SvcPagamento.BuscarPagamentoPorId(pgt);

            foreach (var item in pagamentos)
            {
                pgt.Nome = item.Nome;
            }

            txtNome.Text = pgt.Nome;
            grvPagamentoAluno.DataSource = pagamentos;
            grvPagamentoAluno.DataBind();
        }