public override void CreateViewModels() { ServiceFactory.Events.GetEvent<CreateZoneEvent>().Subscribe(OnCreateZone); ServiceFactory.Events.GetEvent<EditZoneEvent>().Subscribe(OnEditZone); ServiceFactory.Events.GetEvent<ShowDeviceEvent>().Subscribe(OnShowDevice); DevicesViewModel = new DevicesViewModel(); DeviceParametersViewModel = new DeviceParametersViewModel(); ParameterTemplatesViewModel = new ParameterTemplatesViewModel(); ZonesViewModel = new ZonesViewModel(); DirectionsViewModel = new DirectionsViewModel(); GuardViewModel = new GuardViewModel(); SimulationViewModel = new SimulationViewModel(); _planExtension = new PlanExtension(DevicesViewModel, ZonesViewModel); }
public DeviceParametersMenuViewModel(DeviceParametersViewModel context) { Context = context; }