Beispiel #1
0
        public Model.listaLancamentoOcorrencia listaReclamacoesAbertas(Model.LancamentoOcorrenciaModel oLancamento)
        {
            try
            {
                Azuli.Web.DAO.LancamentoOcorrencia oLancamentoDAO = new Azuli.Web.DAO.LancamentoOcorrencia();

                return(oLancamentoDAO.listaReclamacoesAbertas(oLancamento));
            }
            catch (Exception)
            {
                throw;
            }
        }
Beispiel #2
0
        public Model.listaLancamentoOcorrencia buscaOcorrenciaByMeses(Model.LancamentoOcorrenciaModel olancamento, int mes, int ano)
        {
            try
            {
                Azuli.Web.DAO.LancamentoOcorrencia oLancamentoDAO = new Azuli.Web.DAO.LancamentoOcorrencia();

                return(oLancamentoDAO.buscaOcorrenciaByMeses(olancamento, mes, ano));
            }
            catch (Exception)
            {
                throw;
            }
        }
Beispiel #3
0
 Model.listaLancamentoOcorrencia Interfaces.ILancamentoOcorrencia.buscaOcorrenciaById(Model.LancamentoOcorrenciaModel olancamento)
 {
     throw new NotImplementedException();
 }
Beispiel #4
0
 Model.listaLancamentoOcorrencia Interfaces.ILancamentoOcorrencia.buscaOcorrenciaByMeses(Model.LancamentoOcorrenciaModel olancamento, int mes, int ano)
 {
     throw new NotImplementedException();
 }
Beispiel #5
0
        public Model.listaLancamentoOcorrencia buscaOcorrenciaById(Model.LancamentoOcorrenciaModel olancamento)
        {
            Azuli.Web.DAO.LancamentoOcorrencia oLancamentoDAO = new Azuli.Web.DAO.LancamentoOcorrencia();

            return(oLancamentoDAO.buscaOcorrenciaById(olancamento));
        }