コード例 #1
0
        public List <vw_AtendimentoDTO> ListarAtendimentos()
        {
            AtendimentoDatabase db = new AtendimentoDatabase();

            return(db.ListarAtendimentos());
        }
コード例 #2
0
        public int RemoverAtendimento(string id)
        {
            AtendimentoDatabase db = new AtendimentoDatabase();

            return(db.RemoverAtendimento(id));
        }
コード例 #3
0
        public int CadastrarAtendimento(AtendimentoDTO dto)
        {
            AtendimentoDatabase db = new AtendimentoDatabase();

            return(db.CadastrarAtendimento(dto));
        }