Ejemplo n.º 1
0
        public UpdatePray()
        {
            InitializeComponent();
            bl = BL.FactoryBL.GetBL();
            p  = new BE.Pray();

            this.SynagoguecomboBox.ItemsSource       = bl.GetAllSynagogues();
            this.SynagoguecomboBox.DisplayMemberPath = "name";
        }
Ejemplo n.º 2
0
        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";
        }