| 12345678910111213141516171819202122232425262728293031 | 
							- using System.Windows.Controls;
 
- using MECF.Framework.Simulator.Core.Commons;
 
- using Venus_Simulator.Devices;
 
- namespace Venus_Simulator.Views
 
- {
 
-     /// <summary>
 
-     /// Interaction logic for SimuAdTecMatchView.xaml
 
-     /// </summary>
 
-     public partial class SimuSkyPumpLLBView : UserControl
 
-     {
 
-         public SimuSkyPumpLLBView()
 
-         {
 
-             InitializeComponent();
 
-             this.DataContext = new MockSkyPumpViewModelLLB();
 
-         }
 
-     }
 
-     class MockSkyPumpViewModelLLB : SerialPortDeviceViewModel
 
-     {
 
-         public string Title
 
-         {
 
-             get { return "Sky pump LLB simulator"; }
 
-         }
 
-         public MockSkyPumpViewModelLLB() : base("SkyPumpLLBSimulator")
 
-         {
 
-             Init(new SkyPumpMockLLB());
 
-         }
 
-     }
 
- }
 
 
  |