public AddClusterViewModel()
        {
            Cluster         = new ClusterModel();
            ValidationRules = new ClusterValidator();

            // Command
            PostCommand = new Command(Post);
        }
        public SectorEditViewModel(Cluster cluster)
        {
            Cluster           = cluster;
            _clusterValidator = new ClusterValidator();

            MainData.SelectedMapCluster = cluster;

            var targetClusters = MainData.GetGalaxyMap().Clusters.Where(c => c != Cluster && c.IsEnabled == true).Select(c => c.Id);

            foreach (var c in targetClusters)
            {
                TargetClusterIds.Add(c);
            }
        }