Ejemplo n.º 1
0
 public void SetUp()
 {
     position = new VRPosition(42, 42, 42);
     patient = new PatientModel(position);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PatientViewModel" /> class.
 /// </summary>
 /// <param name="pos">The position.</param>
 public PatientViewModel(VRPosition pos)
 {
     this.patientModel = new PatientModel(pos);
     this.Model = this.patientModel;
 }