Exemplo n.º 1
0
 public ClientWindow(PersonDTO person)
 {
     InitializeComponent();
     personOWNER  = person;
     profilClient = new ProfilClient(personOWNER);
     myTours      = new MyTours(personOWNER);
     actualTours  = new NextTours(personOWNER);
     ti_ProfilClient.DataContext = profilClient;
     ti_myTours.DataContext      = myTours;
     ti_actualT.DataContext      = actualTours;
 }
Exemplo n.º 2
0
 public BtnAddMyTours(NextTours nextTours)
 {
     this.nextTours = nextTours;
 }