Migrations aufgefäumt

DateOnly hinzugefügt zur Model.
This commit is contained in:
Husky
2021-10-09 20:55:03 +02:00
parent 3388891134
commit 790792174d
32 changed files with 340 additions and 4042 deletions

View File

@@ -38,7 +38,7 @@ namespace DaSaSo.ViewModel
private string _clientname = "";
private string _projektname = "";
private string _buildingsitename = "";
private readonly RegistryKey? registry;
private RegistryKey? registry;
const string REGISTRYKEY = "HKEY_CURRENT_USER\\Software\\Cosysda\\DaSaSo";
public bool CanSelectProject { get => _actualProject.AktuellClient != null; }
public bool CanSelectBuildingSite { get => _actualProject.AktuellProjekt != null; }
@@ -177,7 +177,7 @@ namespace DaSaSo.ViewModel
private void InitRegistry()
{
Registry.CurrentUser.CreateSubKey("Software\\Cosysda\\DaSaSo");
registry = Registry.CurrentUser.CreateSubKey("Software\\Cosysda\\DaSaSo");
LadeRegistry();
}