예제 #1
0
        public void NewEntity()
        {
            if (ReadOnly)
            {
                return;
            }
            FormFeast ffeast = new FormFeast();

            ffeast.Country = Country;
            if (ffeast.ShowDialog() == DialogResult.OK)
            {
                ReloadFeasts();
            }
        }
예제 #2
0
 public void NewEntity()
 {
     if (ReadOnly) return;
     FormFeast ffeast = new FormFeast();
     ffeast.Country = Country;
     if (ffeast.ShowDialog() == DialogResult.OK)
     {
         ReloadFeasts();
     }
 }