Example #1
0
 private void button4_Click(object sender, EventArgs e)
 {
     txtScript.Clear();
     ManagerActiveRecord.DataBaseInitialize();
     var student = new Student() { DataNascimento = DateTime.Now, Nome = "Rodrigo", SobreNome = "Figueiredo" };
     student.CreateAndFlush();
     txtScript.Text = "Registro Criado";
 }