public CreateNewSignalViewModel()
        {
            types = new List <FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles>();
            types.Add(FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.PowerTransformer);
            selectedType = FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.PowerTransformer;

            CreateCommand = new MyICommand <string>(OnCreate);
        }
        public CreateApplyDeltaViewModel()
        {
            nmsDelta = null;
            //adapter = new CIMAdapter();
            cimLocationString   = "";
            SearchCommand       = new MyICommand <string>(OnSearchCommand);
            ConvertDeltaCommand = new MyICommand <string>(OnConvertCommand);
            ApplyDeltaCommand   = new MyICommand <string>(OnSearchCommand);

            supportedProfiles = new List <FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles>();
            supportedProfiles.Add(FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.PowerTransformer);
            supportedProfiles.Add(FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.OverheadLines);
            supportedProfiles.Add(FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.ProtectionDevices);
            supportedProfiles.Add(FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.SwitchingEquipment);
            supportedProfiles.Add(FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.UndergroundCables);
            supportedProfiles.Add(FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.VoltageRegulator);
            selectedProfile = FTN.ESI.SIMES.CIM.CIMAdapter.Manager.SupportedProfiles.PowerTransformer;
        }