Example #1
0
        /// <summary>
        /// Creates the new object.
        /// </summary>
        /// <param name="pos">The position.</param>
        /// <returns>
        /// The new object
        /// </returns>
        public PatientViewModel CreateNewObject(VRPosition pos)
        {
            PatientViewModel character = new PatientViewModel(pos);
            PatientView view = new PatientView();

            this.LinkMVVM(view, character);
            return character;
        }
Example #2
0
 public void SetUp()
 {
     view = new PatientView();
 }