public void SetUp() { position = new VRPosition(100, 100, 230); tv = new TVModel(position, 10); }
/// <summary> /// Initializes a new instance of the <see cref="TVViewModel"/> class and sets all the properties. /// </summary> /// <param name="pos">The position.</param> /// <param name="id">The identifier.</param> public TVViewModel(VRPosition pos, int id) { this.modelTv = new TVModel(pos, id); this.Model = this.modelTv; }