コード例 #1
0
        public listAgenda pendentePagamento(AgendaModel oAgenda)
        {
            listAgenda oListaAgenda = new listAgenda();
            Agenda oAgendaDao = new Agenda();
            try
            {
                oListaAgenda = oAgendaDao.pendentePagamento(oAgenda);

                return oListaAgenda;

            }
            catch (Exception)
            {

                throw;
            }
        }
コード例 #2
0
        public listAgenda listaEventos()
        {
            listAgenda oListaAgenda = new listAgenda();
            Agenda oAgendaDao = new Agenda();
            try
            {
                oListaAgenda = oAgendaDao.listaEventos();

                return oListaAgenda;

            }
            catch (Exception)
            {

                throw;
            }
        }