Exemplo n.º 1
0
 private void SaveButton_Click(object sender, EventArgs e)
 {
     if (QuantityTextbox.Text != "")
     {
         searchCrit = new Sections
         {
             GroupSize = Convert.ToByte(QuantityTextbox.Text),
         };
         DependencyFacade.InsertSection(searchCrit);
         this.Hide();
     }
 }