示例#1
0
        public MyProfile(User us, IRepositoryInterface repo, Context cont)
        {
            InitializeComponent();
            ThisUser = us;
            rep      = repo;
            context  = cont;
            rep.RestorePets();
            rep.RestoreRequests();
            Page4 page4 = new Page4(ThisUser, rep, context);

            ContentFrame.NavigationService.Navigate(page4);
        }
示例#2
0
        private void RadioButton_ClickRequests(object sender, RoutedEventArgs e)
        {
            Page4 page4 = new Page4(ThisUser, rep, context);

            ContentFrame.NavigationService.Navigate(page4);
        }