getListTratamentos() public method

public getListTratamentos ( ) : List
return List
        private void Agendamento_Load(object sender, EventArgs e)
        {
            DAOPet daoPet = new DAOPet();
            DAOTratamento daoTratamento = new DAOTratamento();

            this.cmbNome.DataSource = daoPet.getListPets();
            this.cmbNome.DisplayMember = "nomeRGA";
            this.cmbNome.ValueMember = "idPet";

            this.cmbTratamento.DataSource = daoTratamento.getListTratamentos();
            this.cmbTratamento.DisplayMember = "descricao";
            this.cmbTratamento.ValueMember = "idTratamento";
        }