using System; using System.Collections.Generic; using System.Text; namespace SGCV { public class Consulta : Procedimento { private string tratamento; public string Tratamento { get { return tratamento; } set { tratamento = value; } } private string exame; public string Exame { get { return exame; } set { exame = value; } } private string historico; public string Historico { get { return historico; } set { historico = value; } } } }