public UpdatePray() { InitializeComponent(); bl = BL.FactoryBL.GetBL(); p = new BE.Pray(); this.SynagoguecomboBox.ItemsSource = bl.GetAllSynagogues(); this.SynagoguecomboBox.DisplayMemberPath = "name"; }
public AddingPray() { InitializeComponent(); bl = BL.FactoryBL.GetBL(); p = new BE.Pray(); this.KindPraycomboBox.ItemsSource = Enum.GetValues(typeof(BE.KindPray)); this.SynagoguecomboBox.ItemsSource = bl.GetAllSynagogues(); this.SynagoguecomboBox.DisplayMemberPath = "name"; }