Example #1
0
 private void buttonSave_Click(object sender, EventArgs e)
 {
     if (validate())
     {
         if (isUpdate)
         {
             if (ShardDb.UpdateWeddingDress(dress))
             {
                 this.Close();
             }
         }
         else
         {
             if (ShardDb.InsertWeddingDress(dress))
             {
                 this.Close();
             }
         }
     }
 }