Ejemplo n.º 1
0
        public List <vw_AtendimentoDTO> ListarAtendimentos()
        {
            AtendimentoDatabase db = new AtendimentoDatabase();

            return(db.ListarAtendimentos());
        }
Ejemplo n.º 2
0
        public int RemoverAtendimento(string id)
        {
            AtendimentoDatabase db = new AtendimentoDatabase();

            return(db.RemoverAtendimento(id));
        }
Ejemplo n.º 3
0
        public int CadastrarAtendimento(AtendimentoDTO dto)
        {
            AtendimentoDatabase db = new AtendimentoDatabase();

            return(db.CadastrarAtendimento(dto));
        }