Example #1
0
        private void UpdateFestivalExecute()
        {
            UpdateFestival update = new UpdateFestival(Festival);

            update.ShowDialog();
            Festivals = _dALFestival.AllFestivals();
        }
 public UpdateFestivalViewModel(UpdateFestival window, Festival festival)
 {
     this.window      = window;
     _currentFestival = festival;
     allPlaces        = _dALPlace.AllPlaces();
 }