| 12345678910111213141516171819202122232425262728293031 | 
							- using System.Windows.Controls;
 
- using MECF.Framework.Simulator.Core.Commons;
 
- using Venus_Simulator.Devices;
 
- namespace Venus_Simulator.Views
 
- {
 
-     /// <summary>
 
-     /// Interaction logic for SimuAdTecGeneratorView.xaml
 
-     /// </summary>
 
-     public partial class SimuAdTecGeneratorView : UserControl
 
-     {
 
-         public SimuAdTecGeneratorView()
 
-         {
 
-             InitializeComponent();
 
-             this.DataContext = new MockAdTecGeneratorViewModel();
 
-         }
 
-     }
 
-     class MockAdTecGeneratorViewModel : SerialPortDeviceViewModel
 
-     {
 
-         public string Title
 
-         {
 
-             get { return "AdTec RFG simulator"; }
 
-         }
 
-         public MockAdTecGeneratorViewModel() : base("AdTecRFG")
 
-         {
 
-             Init(new AdTecGeneratorMock());
 
-         }
 
-     }
 
- }
 
 
  |