Example #1
0
        private void btnAddRepertorio_Click(object sender, EventArgs e)
        {
            string repertorioName = Interaction.InputBox("Digite o nome do repertório", "Criar novo repertório", "", -1, -1);

            var repertorio = new Repertorio()
            {
                Nome = repertorioName
            };

            if (ModelValidator.IsValid(repertorio))
            {
                RepertorioDAO.Add(repertorio);
                fillLists();
            }
            else
            {
                MessageBox.Show(ModelValidator.GetValidationErros(repertorio));
            }
        }