// Drop Down
        private void cmb_professor_DropDown(object sender, EventArgs e)
        {
            if (cmb_professor.Text.Length > 0)
            {
                return;
            }

            string[] prof_total = GerenciadorBanco.getListaTotalProf().ToArray();
            cmb_professor.Items.Clear();
            cmb_professor.Items.AddRange(prof_total);
            return;
        }
        public static bool ProfessorExiste(string PROFESSOR)
        {
            List <string> listaProf = GerenciadorBanco.getListaTotalProf();

            for (int i = 0; i < listaProf.Count(); ++i)
            {
                if (listaProf[i] == PROFESSOR)
                {
                    return(true);
                }
            }

            return(false);
        }