public void RetrieveLicenses()
 {
     SplashScreenManagerService.Show();
     LicenseConfigVM = LicenseConfigViewModel.Create(SelectedProduct);
     LicenseConfigVM.SetParentViewModel(this);
     SplashScreenManagerService.Close();
 }
        public void UpdateAccounts()
        {
            var db = new KeycipherLicensingDBEntities();

            Accounts        = db.Accounts.Include("Products").Cast <Account>().ToList();
            SelectedAccount = null;
            SelectedProduct = null;
            LicenseConfigVM = null;
        }