WIP dependency Injection

This commit is contained in:
HuskyTeufel
2021-09-13 15:37:23 +02:00
parent 70fcb1711d
commit 12652b3fa3
96 changed files with 4836 additions and 505 deletions

3
.gitignore vendored
View File

@@ -2,3 +2,6 @@
/DaSaSo.Domain/obj/Debug/net6.0/* /DaSaSo.Domain/obj/Debug/net6.0/*
/DaSaSo.EntityFramework/obj/Debug/* /DaSaSo.EntityFramework/obj/Debug/*
/.vs/* /.vs/*
/DaSaSo.ConsoleApp/obj/DaSaSo.ConsoleApp.csproj.*
/DaSaSo.ConsoleApp/obj/Debug/*
/DaSaSo.Wpf/obj/Debug/net6.0-windows/*

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\DaSaSo.Domain\DaSaSo.Domain.csproj" />
<ProjectReference Include="..\DaSaSo.EntityFramework\DaSaSo.EntityFramework.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,16 @@
// See https://aka.ms/new-console-template for more information
using DaSaSo.Domain.Model;
using DaSaSo.Domain.Service;
using DaSaSo.EntityFramework;
using DaSaSo.EntityFramework.Services;
using System.Diagnostics;
IDataService<Client> clientService = new GenericDataService<Client>(new DaSaSoDbContextFactory());
clientService.Create(new Client()
{
Firstname = "Cynthia",
LastName = "Schreuder",
Country = "Tarmstedt",
Postcode = "25445",
});

View File

@@ -0,0 +1,787 @@
{
"version": 3,
"targets": {
"net6.0": {
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Analyzers": "6.0.0-preview.7.21378.4",
"Microsoft.Extensions.Caching.Memory": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging": "6.0.0-preview.7.21377.19",
"System.Collections.Immutable": "6.0.0-preview.7.21377.19",
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
}
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
}
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {
"type": "package",
"compile": {
"lib/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/_._": {}
}
},
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"System.Buffers": "4.5.1",
"System.Memory": "4.5.4"
},
"compile": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"Npgsql/6.0.0-preview7": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
},
"compile": {
"lib/net6.0/Npgsql.dll": {}
},
"runtime": {
"lib/net6.0/Npgsql.dll": {}
}
},
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Relational": "6.0.0-preview.7.21378.4",
"Npgsql": "6.0.0-preview7"
},
"compile": {
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
},
"runtime": {
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
}
},
"System.Buffers/4.5.1": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/net6.0/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/net6.0/System.Collections.Immutable.dll": {}
}
},
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Memory/4.5.4": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/_._": {}
},
"runtime": {
"lib/netcoreapp2.1/_._": {}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"DaSaSo.Domain/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"compile": {
"bin/placeholder/DaSaSo.Domain.dll": {}
},
"runtime": {
"bin/placeholder/DaSaSo.Domain.dll": {}
}
},
"DaSaSo.EntityFramework/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
"DaSaSo.Domain": "1.0.0",
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.0-preview7"
},
"compile": {
"bin/placeholder/DaSaSo.EntityFramework.dll": {}
},
"runtime": {
"bin/placeholder/DaSaSo.EntityFramework.dll": {}
}
}
}
},
"libraries": {
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
"sha512": "BdupTWakC6DOZ4/+nsTXDYiyshJsdNvxIq3e++qHYyOU12awyHHF//ISmqJvZgC6lKTEn/0gKHQcMZwtLZiAnA==",
"type": "package",
"path": "microsoft.entityframeworkcore/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.xml",
"microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
"sha512": "OBWmLgRYZLKu+umANQVnYCSvQbjEkQOfOSVAbyTUfvkAAKZXbSGr9DWi9uFjTk6E5/6a+aBQP4onnEfHhYwPsg==",
"type": "package",
"path": "microsoft.entityframeworkcore.abstractions/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
"microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.abstractions.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {
"sha512": "4TYb+ZCPZ2/+pj4d/cpYXKQm4g7cP4J5jZR9UfJJXvOkOyakxcckYZVU3UT118UDTNW4D6YAB11ItsJ/+9J7GQ==",
"type": "package",
"path": "microsoft.entityframeworkcore.analyzers/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
"lib/netstandard2.0/_._",
"microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.analyzers.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
"sha512": "thmbe4H6s2h4XpKMOGSO5ke/XOU5xF5Y3r1nc9GP9fPORTbNtheOiXL2ivVJ7TyGN83d105iCr693SKlM2Sc1A==",
"type": "package",
"path": "microsoft.entityframeworkcore.relational/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
"microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.relational.nuspec"
]
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "8W2Ywl5KuZ+qSPFipRXse8FaqeH4Fj5fxmqgvbScGoNdgOMjkSR/5ms1Q2FsZbVAiwx09Ww82MBNCFarwccGfg==",
"type": "package",
"path": "microsoft.extensions.caching.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
"microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.caching.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
"sha512": "MEIhC9Oog1Jlxn0wRHdkaZ6rdJQHEOPNuCYeI9skMKwilY52R3ak+oXQXYNoTGcvyH4g9zYlUVpHmu4t7R/pOA==",
"type": "package",
"path": "microsoft.extensions.caching.memory/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Caching.Memory.dll",
"lib/net461/Microsoft.Extensions.Caching.Memory.xml",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
"microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.caching.memory.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "E7jldErD3SGhDuxilC2H7UaATGpJJc+pYpYpsiSEhIveM6ldSwjRCqg3iousXnF1zdDMRESsCROYwPIVygoyVQ==",
"type": "package",
"path": "microsoft.extensions.configuration.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
"microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.configuration.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
"sha512": "BjESHgE6sL2YfUsc7fyA6zWax/ByG0We+F5hRk9hvlSupFMzaMvKWhjAAzZnQG+tvqsrZxydrZtganxDpuqqeQ==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.DependencyInjection.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
"microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.dependencyinjection.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "atV1M3Bmuc9+mIW1/AxgfYhZBH74P5897+sOq5zXQaNA/OBqAax1NQ/LZrIVqpFMYk5aPVv4vn2uirQ4Peuglg==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
"sha512": "kOrN0Tazrui2vh1tSqdI33lwZPBCPeyR7z8pWOR3i4LembIq5LBtZ6kNQMcp4vrrkMwafu6vPcbgaZy0gPKb1g==",
"type": "package",
"path": "microsoft.extensions.logging/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Logging.dll",
"lib/net461/Microsoft.Extensions.Logging.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
"microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.logging.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "cZMOsb9rKHMIPs170MUOnX3vB6lJJG3N4mO+ViX9o838Qvkq2+IEJus1B7oE2u3zCCqCUB9foa/t7qgUeSaRHg==",
"type": "package",
"path": "microsoft.extensions.logging.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"analyzers/dotnet/cs/Microsoft.Extensions.Logging.Generators.dll",
"analyzers/dotnet/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
"microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.logging.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
"sha512": "OiAS21Wg1X1qm4yE54PPJahF+nogKn5A+1UYcewvsASDcUudjllpCGMrqh5cI27pIst5VbFhq1KGTwzhU/GywA==",
"type": "package",
"path": "microsoft.extensions.options/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Options.dll",
"lib/net461/Microsoft.Extensions.Options.xml",
"lib/netstandard2.0/Microsoft.Extensions.Options.dll",
"lib/netstandard2.0/Microsoft.Extensions.Options.xml",
"lib/netstandard2.1/Microsoft.Extensions.Options.dll",
"lib/netstandard2.1/Microsoft.Extensions.Options.xml",
"microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.options.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
"sha512": "dbYTaKld3fbZETLzYknl5np8/rnas3isR3RQi0xvZNrz4S1bhn7lsEbu8ACwMAQxPxiKBgl59RKUNVmqjJ4Aww==",
"type": "package",
"path": "microsoft.extensions.primitives/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.Primitives.dll",
"lib/net461/Microsoft.Extensions.Primitives.xml",
"lib/net6.0/Microsoft.Extensions.Primitives.dll",
"lib/net6.0/Microsoft.Extensions.Primitives.xml",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
"microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.primitives.nuspec",
"useSharedDesignerContext.txt"
]
},
"Npgsql/6.0.0-preview7": {
"sha512": "dOdWAo4aYu5RgEtbcXqKBHFp4s6TOSsUSwTC2rcsZd5quFS7geeUaXHnJlCxOYq2tNcFpTHNVFRlHB1OgKAw7w==",
"type": "package",
"path": "npgsql/6.0.0-preview7",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net5.0/Npgsql.dll",
"lib/net5.0/Npgsql.xml",
"lib/net6.0/Npgsql.dll",
"lib/net6.0/Npgsql.xml",
"lib/netcoreapp3.1/Npgsql.dll",
"lib/netcoreapp3.1/Npgsql.xml",
"lib/netstandard2.0/Npgsql.dll",
"lib/netstandard2.0/Npgsql.xml",
"lib/netstandard2.1/Npgsql.dll",
"lib/netstandard2.1/Npgsql.xml",
"npgsql.6.0.0-preview7.nupkg.sha512",
"npgsql.nuspec",
"postgresql.png"
]
},
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
"sha512": "nzDmkNImvzXtgQK8gN1C5F1eYUr9XSKGidWY+T0EjCeaKzuQnvg2Rac785/CtYsdC4/JWsgeI0oZaH1+Yb6JdQ==",
"type": "package",
"path": "npgsql.entityframeworkcore.postgresql/6.0.0-preview7",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
"npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
"npgsql.entityframeworkcore.postgresql.nuspec",
"postgresql.png"
]
},
"System.Buffers/4.5.1": {
"sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
"type": "package",
"path": "system.buffers/4.5.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Buffers.dll",
"lib/net461/System.Buffers.xml",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.1/System.Buffers.dll",
"lib/netstandard1.1/System.Buffers.xml",
"lib/netstandard2.0/System.Buffers.dll",
"lib/netstandard2.0/System.Buffers.xml",
"lib/uap10.0.16299/_._",
"ref/net45/System.Buffers.dll",
"ref/net45/System.Buffers.xml",
"ref/netcoreapp2.0/_._",
"ref/netstandard1.1/System.Buffers.dll",
"ref/netstandard1.1/System.Buffers.xml",
"ref/netstandard2.0/System.Buffers.dll",
"ref/netstandard2.0/System.Buffers.xml",
"ref/uap10.0.16299/_._",
"system.buffers.4.5.1.nupkg.sha512",
"system.buffers.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {
"sha512": "TnnzExYnPymCOxNLnOgpTl0GAnXtm3urz/XNnLxutN5uRFMT6TRaUpL2j8ADyXX4JkSJcyXOQ3GI9DLqBzRmIA==",
"type": "package",
"path": "system.collections.immutable/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Collections.Immutable.dll",
"lib/net461/System.Collections.Immutable.xml",
"lib/net6.0/System.Collections.Immutable.dll",
"lib/net6.0/System.Collections.Immutable.xml",
"lib/netstandard2.0/System.Collections.Immutable.dll",
"lib/netstandard2.0/System.Collections.Immutable.xml",
"system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.collections.immutable.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {
"sha512": "bnq8waIAuRZSU63bQQYzCTyfhqCSKTKWfy2oxBcVWh79d8WaiC4vtvyR0kAcF4YMrhK4YwjlXLblgfifXImPGw==",
"type": "package",
"path": "system.diagnostics.diagnosticsource/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Diagnostics.DiagnosticSource.dll",
"lib/net461/System.Diagnostics.DiagnosticSource.xml",
"lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
"lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
"lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
"lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
"lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
"system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.diagnostics.diagnosticsource.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Memory/4.5.4": {
"sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
"type": "package",
"path": "system.memory/4.5.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Memory.dll",
"lib/net461/System.Memory.xml",
"lib/netcoreapp2.1/_._",
"lib/netstandard1.1/System.Memory.dll",
"lib/netstandard1.1/System.Memory.xml",
"lib/netstandard2.0/System.Memory.dll",
"lib/netstandard2.0/System.Memory.xml",
"ref/netcoreapp2.1/_._",
"system.memory.4.5.4.nupkg.sha512",
"system.memory.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {
"sha512": "G9eKxgKE5UoyJdB4tpBFCWlgky34N11QDIjn92g6BwqII03yra4raegNNt3y3lmN6k+VDLIzgVMuddZ7LT6TEw==",
"type": "package",
"path": "system.runtime.compilerservices.unsafe/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
"ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
"system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.runtime.compilerservices.unsafe.nuspec",
"useSharedDesignerContext.txt"
]
},
"DaSaSo.Domain/1.0.0": {
"type": "project",
"path": "../DaSaSo.Domain/DaSaSo.Domain.csproj",
"msbuildProject": "../DaSaSo.Domain/DaSaSo.Domain.csproj"
},
"DaSaSo.EntityFramework/1.0.0": {
"type": "project",
"path": "../DaSaSo.EntityFramework/DaSaSo.EntityFramework.csproj",
"msbuildProject": "../DaSaSo.EntityFramework/DaSaSo.EntityFramework.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0": [
"DaSaSo.Domain >= 1.0.0",
"DaSaSo.EntityFramework >= 1.0.0"
]
},
"packageFolders": {
"C:\\Users\\KFZ\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ConsoleApp\\DaSaSo.ConsoleApp.csproj",
"projectName": "DaSaSo.ConsoleApp",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ConsoleApp\\DaSaSo.ConsoleApp.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ConsoleApp\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,29 @@
{
"version": 2,
"dgSpecHash": "Z4HZ+GJ9FxcdmtU630ooDw2M4hK6sos8jFh6+UPhv8Fvryb6AG5gj9wGz9kVWX+gXbNcqh4earID4JeWm7g/jA==",
"success": true,
"projectFilePath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ConsoleApp\\DaSaSo.ConsoleApp.csproj",
"expectedPackageFiles": [
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.options\\6.0.0-preview.7.21377.19\\microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0-preview.7.21377.19\\microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\npgsql\\6.0.0-preview7\\npgsql.6.0.0-preview7.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\6.0.0-preview7\\npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.collections.immutable\\6.0.0-preview.7.21377.19\\system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0-preview.7.21377.19\\system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0-preview.7.21377.19\\system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512"
],
"logs": []
}

View File

@@ -11,6 +11,7 @@ namespace DaSaSo.Domain.Model
public string Firstname { get; set; } public string Firstname { get; set; }
public string LastName { get; set; } public string LastName { get; set; }
public string Country { get; set; } public string Country { get; set; }
public string Street { get; set; }
public string Postcode { get; set; } public string Postcode { get; set; }
public IEnumerable<Project> Projects { get; set; } public IEnumerable<Project> Projects { get; set; }

View File

@@ -0,0 +1,37 @@
using DaSaSo.Domain.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.Domain.Services.ClientServices
{
public class ClientService : IClientService
{
private readonly IDataService<Client> _clientService;
public async Task<bool> CreateNewClient(string firstname, string lastname, string street, string country, string postcode)
{
Client client = new Client()
{
Firstname = firstname,
LastName = lastname,
Country = country,
Postcode = postcode,
Street = street
};
await _clientService.Create(client);
return true;
}
public Task<Client> GetClientById(int id)
{
throw new NotImplementedException();
}
public async Task<Client> ListAllClient()
{
throw new NotImplementedException();
}
}
}

View File

@@ -0,0 +1,16 @@
using DaSaSo.Domain.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.Domain.Services.ClientServices
{
public interface IClientService
{
Task<Client> ListAllClient();
Task<Client> GetClientById(int id);
Task<bool> CreateNewClient(string firstname, string lastname, string street, string country, string postcode);
}
}

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace DaSaSo.Domain.Service namespace DaSaSo.Domain.Services
{ {
public interface IDataService<T> public interface IDataService<T>
{ {

View File

@@ -1,25 +1,23 @@
{ {
"format": 1, "format": 1,
"restore": { "restore": {
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {} "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {}
}, },
"projects": { "projects": {
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": { "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj", "projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"projectName": "DaSaSo.Domain", "projectName": "DaSaSo.Domain",
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj", "projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"packagesPath": "C:\\Users\\Damian\\.nuget\\packages\\", "packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\obj\\", "outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "configFilePaths": [
"C:\\Users\\Damian\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@@ -27,7 +25,6 @@
"net6.0" "net6.0"
], ],
"sources": { "sources": {
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {},
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },

View File

@@ -5,13 +5,12 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Damian\.nuget\packages\;C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\KFZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Damian\.nuget\packages\" /> <SourceRoot Include="C:\Users\KFZ\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup> </ItemGroup>
<PropertyGroup> <PropertyGroup>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DaSaSo.Domain")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DaSaSo.Domain")]
[assembly: System.Reflection.AssemblyTitleAttribute("DaSaSo.Domain")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
0b67ccdd3009088c96b9f73f63e21bb282da198d

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DaSaSo.Domain
build_property.ProjectDir = C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.Domain\

View File

@@ -0,0 +1,8 @@
// <autogenerated />
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -8,26 +8,23 @@
"net6.0": [] "net6.0": []
}, },
"packageFolders": { "packageFolders": {
"C:\\Users\\Damian\\.nuget\\packages\\": {}, "C:\\Users\\KFZ\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
}, },
"project": { "project": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj", "projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"projectName": "DaSaSo.Domain", "projectName": "DaSaSo.Domain",
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj", "projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"packagesPath": "C:\\Users\\Damian\\.nuget\\packages\\", "packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\obj\\", "outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "configFilePaths": [
"C:\\Users\\Damian\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@@ -35,7 +32,6 @@
"net6.0" "net6.0"
], ],
"sources": { "sources": {
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {},
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },

View File

@@ -1,8 +1,8 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "JgvHPv+e7B8BaNBmzBNJdk4fh9J8fCVLlMheOCwSKvN6nvMP6cK2q0MLa+Ky9E5PuppToqtxMxTOEbFkM+LlNg==", "dgSpecHash": "EJJlssG0uuXPOzIJ4pyiNqcpGAl7R4mB3SbvfLzw8aWR6k9B1lYi7B+qRzke/1zY6MNh8MRP+efibH9GE9c1sg==",
"success": true, "success": true,
"projectFilePath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj", "projectFilePath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"expectedPackageFiles": [], "expectedPackageFiles": [],
"logs": [] "logs": []
} }

View File

@@ -14,9 +14,15 @@ namespace DaSaSo.EntityFramework
{ {
} }
public DbSet<Client> Clients { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder)
public DbSet<Project> Projects { get; set; } {
public DbSet<Buildingsite> Buildingsites { get; set; }
base.OnModelCreating(modelBuilder);
}
public DbSet<Client>? Clients { get; set; }
public DbSet<Project>? Projects { get; set; }
public DbSet<Buildingsite>? Buildingsites { get; set; }
} }
} }

View File

@@ -10,10 +10,10 @@ namespace DaSaSo.EntityFramework
{ {
public class DaSaSoDbContextFactory : IDesignTimeDbContextFactory<DaSaSoDbContext> public class DaSaSoDbContextFactory : IDesignTimeDbContextFactory<DaSaSoDbContext>
{ {
public DaSaSoDbContext CreateDbContext(string[] args = null) public DaSaSoDbContext CreateDbContext(string[]? args = null)
{ {
var options = new DbContextOptionsBuilder<DaSaSoDbContext>(); var options = new DbContextOptionsBuilder<DaSaSoDbContext>();
options.UseNpgsql("Host = 192.168.122.1; Database = dasaso; Username = kansan; Password = kansan"); options.UseNpgsql("Host = localhost; Database = dasaso; Username = kansan; Password = kansan");
return new DaSaSoDbContext(options.Options); return new DaSaSoDbContext(options.Options);
} }
} }

View File

@@ -0,0 +1,191 @@
// <auto-generated />
using System;
using DaSaSo.EntityFramework;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
namespace DaSaSo.EntityFramework.Migrations
{
[DbContext(typeof(DaSaSoDbContext))]
[Migration("20210913113208_StreetAdded")]
partial class StreetAdded
{
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("Relational:MaxIdentifierLength", 63)
.HasAnnotation("ProductVersion", "6.0.0-preview.7.21378.4")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<string>("BuildingSiteNumber")
.IsRequired()
.HasColumnType("text");
b.Property<string>("ContactPerson")
.IsRequired()
.HasColumnType("text");
b.Property<string>("Country")
.IsRequired()
.HasColumnType("text");
b.Property<int?>("ProjectId")
.HasColumnType("integer");
b.HasKey("Id");
b.HasIndex("ProjectId");
b.ToTable("Buildingsites");
});
modelBuilder.Entity("DaSaSo.Domain.Model.Client", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<string>("Country")
.IsRequired()
.HasColumnType("text");
b.Property<string>("Firstname")
.IsRequired()
.HasColumnType("text");
b.Property<string>("LastName")
.IsRequired()
.HasColumnType("text");
b.Property<string>("Postcode")
.IsRequired()
.HasColumnType("text");
b.Property<string>("Street")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.ToTable("Clients");
});
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<int>("ClientId")
.HasColumnType("integer");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("ClientId");
b.ToTable("Projects");
});
modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<int>("BuildingSiteId")
.HasColumnType("integer");
b.Property<int>("DN")
.HasColumnType("integer");
b.Property<string>("ObjektName")
.IsRequired()
.HasColumnType("text");
b.Property<string>("PointFrom")
.IsRequired()
.HasColumnType("text");
b.Property<string>("PointTo")
.IsRequired()
.HasColumnType("text");
b.Property<decimal>("SewerLength")
.HasColumnType("numeric");
b.Property<string>("StreetName")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("BuildingSiteId");
b.ToTable("SewerObjects");
});
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
{
b.HasOne("DaSaSo.Domain.Model.Project", null)
.WithMany("BuildingSites")
.HasForeignKey("ProjectId");
});
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
{
b.HasOne("DaSaSo.Domain.Model.Client", "Client")
.WithMany("Projects")
.HasForeignKey("ClientId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Client");
});
modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b =>
{
b.HasOne("DaSaSo.Domain.Model.Buildingsite", "BuildingSite")
.WithMany("SewerObjects")
.HasForeignKey("BuildingSiteId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("BuildingSite");
});
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
{
b.Navigation("SewerObjects");
});
modelBuilder.Entity("DaSaSo.Domain.Model.Client", b =>
{
b.Navigation("Projects");
});
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
{
b.Navigation("BuildingSites");
});
#pragma warning restore 612, 618
}
}
}

View File

@@ -0,0 +1,24 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace DaSaSo.EntityFramework.Migrations
{
public partial class StreetAdded : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Street",
table: "Clients",
type: "text",
nullable: false,
defaultValue: "");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Street",
table: "Clients");
}
}
}

View File

@@ -71,6 +71,10 @@ namespace DaSaSo.EntityFramework.Migrations
.IsRequired() .IsRequired()
.HasColumnType("text"); .HasColumnType("text");
b.Property<string>("Street")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("Clients"); b.ToTable("Clients");

View File

@@ -1,5 +1,5 @@
using DaSaSo.Domain.Model; using DaSaSo.Domain.Model;
using DaSaSo.Domain.Service; using DaSaSo.Domain.Services;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.ChangeTracking; using Microsoft.EntityFrameworkCore.ChangeTracking;
using System; using System;
@@ -72,3 +72,6 @@ namespace DaSaSo.EntityFramework.Services
} }
} }
} }
//764 / 21

View File

@@ -1,400 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"DaSaSo.EntityFramework/1.0.0": {
"dependencies": {
"DaSaSo.Domain": "1.0.0",
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Tools": "6.0.0-preview.7.21378.4",
"Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.0-preview7"
},
"runtime": {
"DaSaSo.EntityFramework.dll": {}
}
},
"Humanizer.Core/2.8.26": {
"runtime": {
"lib/netstandard2.0/Humanizer.dll": {
"assemblyVersion": "2.8.0.0",
"fileVersion": "2.8.26.1919"
}
}
},
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
"dependencies": {
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Analyzers": "6.0.0-preview.7.21378.4",
"Microsoft.Extensions.Caching.Memory": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging": "6.0.0-preview.7.21377.19",
"System.Collections.Immutable": "6.0.0-preview.7.21377.19",
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37804"
}
}
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37804"
}
}
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {},
"Microsoft.EntityFrameworkCore.Design/6.0.0-preview.7.21378.4": {
"dependencies": {
"Humanizer.Core": "2.8.26",
"Microsoft.EntityFrameworkCore.Relational": "6.0.0-preview.7.21378.4"
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37804"
}
}
},
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37804"
}
}
},
"Microsoft.EntityFrameworkCore.Tools/6.0.0-preview.7.21378.4": {
"dependencies": {
"Microsoft.EntityFrameworkCore.Design": "6.0.0-preview.7.21378.4"
}
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
"dependencies": {
"System.Buffers": "4.5.1",
"System.Memory": "4.5.4"
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.37719"
}
}
},
"Npgsql/6.0.0-preview7": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"runtime": {
"lib/net6.0/Npgsql.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.0.0"
}
}
},
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Relational": "6.0.0-preview.7.21378.4",
"Npgsql": "6.0.0-preview7"
},
"runtime": {
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.0.0"
}
}
},
"System.Buffers/4.5.1": {},
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {},
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {},
"System.Memory/4.5.4": {},
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {},
"DaSaSo.Domain/1.0.0": {
"runtime": {
"DaSaSo.Domain.dll": {}
}
}
}
},
"libraries": {
"DaSaSo.EntityFramework/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Humanizer.Core/2.8.26": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
"path": "humanizer.core/2.8.26",
"hashPath": "humanizer.core.2.8.26.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BdupTWakC6DOZ4/+nsTXDYiyshJsdNvxIq3e++qHYyOU12awyHHF//ISmqJvZgC6lKTEn/0gKHQcMZwtLZiAnA==",
"path": "microsoft.entityframeworkcore/6.0.0-preview.7.21378.4",
"hashPath": "microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OBWmLgRYZLKu+umANQVnYCSvQbjEkQOfOSVAbyTUfvkAAKZXbSGr9DWi9uFjTk6E5/6a+aBQP4onnEfHhYwPsg==",
"path": "microsoft.entityframeworkcore.abstractions/6.0.0-preview.7.21378.4",
"hashPath": "microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4TYb+ZCPZ2/+pj4d/cpYXKQm4g7cP4J5jZR9UfJJXvOkOyakxcckYZVU3UT118UDTNW4D6YAB11ItsJ/+9J7GQ==",
"path": "microsoft.entityframeworkcore.analyzers/6.0.0-preview.7.21378.4",
"hashPath": "microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Design/6.0.0-preview.7.21378.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3buBoJUKSAF61I43t23OoRoZk8oeWxrqCC1r7c9fbf+FNPhMV+6VNHZ7xV0uGA23qYptG/PDoyuWmpjn5da24Q==",
"path": "microsoft.entityframeworkcore.design/6.0.0-preview.7.21378.4",
"hashPath": "microsoft.entityframeworkcore.design.6.0.0-preview.7.21378.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-thmbe4H6s2h4XpKMOGSO5ke/XOU5xF5Y3r1nc9GP9fPORTbNtheOiXL2ivVJ7TyGN83d105iCr693SKlM2Sc1A==",
"path": "microsoft.entityframeworkcore.relational/6.0.0-preview.7.21378.4",
"hashPath": "microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Tools/6.0.0-preview.7.21378.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cE2oI9+LPys+xwVhdp8SVwa0g8gXJzrjRlCjOL5Ew05WHlxC08h0sOx6SHRPyVDLqGw37/O4RZXh1FafrVUARQ==",
"path": "microsoft.entityframeworkcore.tools/6.0.0-preview.7.21378.4",
"hashPath": "microsoft.entityframeworkcore.tools.6.0.0-preview.7.21378.4.nupkg.sha512"
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-8W2Ywl5KuZ+qSPFipRXse8FaqeH4Fj5fxmqgvbScGoNdgOMjkSR/5ms1Q2FsZbVAiwx09Ww82MBNCFarwccGfg==",
"path": "microsoft.extensions.caching.abstractions/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MEIhC9Oog1Jlxn0wRHdkaZ6rdJQHEOPNuCYeI9skMKwilY52R3ak+oXQXYNoTGcvyH4g9zYlUVpHmu4t7R/pOA==",
"path": "microsoft.extensions.caching.memory/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-E7jldErD3SGhDuxilC2H7UaATGpJJc+pYpYpsiSEhIveM6ldSwjRCqg3iousXnF1zdDMRESsCROYwPIVygoyVQ==",
"path": "microsoft.extensions.configuration.abstractions/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BjESHgE6sL2YfUsc7fyA6zWax/ByG0We+F5hRk9hvlSupFMzaMvKWhjAAzZnQG+tvqsrZxydrZtganxDpuqqeQ==",
"path": "microsoft.extensions.dependencyinjection/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-atV1M3Bmuc9+mIW1/AxgfYhZBH74P5897+sOq5zXQaNA/OBqAax1NQ/LZrIVqpFMYk5aPVv4vn2uirQ4Peuglg==",
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kOrN0Tazrui2vh1tSqdI33lwZPBCPeyR7z8pWOR3i4LembIq5LBtZ6kNQMcp4vrrkMwafu6vPcbgaZy0gPKb1g==",
"path": "microsoft.extensions.logging/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cZMOsb9rKHMIPs170MUOnX3vB6lJJG3N4mO+ViX9o838Qvkq2+IEJus1B7oE2u3zCCqCUB9foa/t7qgUeSaRHg==",
"path": "microsoft.extensions.logging.abstractions/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OiAS21Wg1X1qm4yE54PPJahF+nogKn5A+1UYcewvsASDcUudjllpCGMrqh5cI27pIst5VbFhq1KGTwzhU/GywA==",
"path": "microsoft.extensions.options/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dbYTaKld3fbZETLzYknl5np8/rnas3isR3RQi0xvZNrz4S1bhn7lsEbu8ACwMAQxPxiKBgl59RKUNVmqjJ4Aww==",
"path": "microsoft.extensions.primitives/6.0.0-preview.7.21377.19",
"hashPath": "microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"Npgsql/6.0.0-preview7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dOdWAo4aYu5RgEtbcXqKBHFp4s6TOSsUSwTC2rcsZd5quFS7geeUaXHnJlCxOYq2tNcFpTHNVFRlHB1OgKAw7w==",
"path": "npgsql/6.0.0-preview7",
"hashPath": "npgsql.6.0.0-preview7.nupkg.sha512"
},
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-nzDmkNImvzXtgQK8gN1C5F1eYUr9XSKGidWY+T0EjCeaKzuQnvg2Rac785/CtYsdC4/JWsgeI0oZaH1+Yb6JdQ==",
"path": "npgsql.entityframeworkcore.postgresql/6.0.0-preview7",
"hashPath": "npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512"
},
"System.Buffers/4.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
"path": "system.buffers/4.5.1",
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
},
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TnnzExYnPymCOxNLnOgpTl0GAnXtm3urz/XNnLxutN5uRFMT6TRaUpL2j8ADyXX4JkSJcyXOQ3GI9DLqBzRmIA==",
"path": "system.collections.immutable/6.0.0-preview.7.21377.19",
"hashPath": "system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bnq8waIAuRZSU63bQQYzCTyfhqCSKTKWfy2oxBcVWh79d8WaiC4vtvyR0kAcF4YMrhK4YwjlXLblgfifXImPGw==",
"path": "system.diagnostics.diagnosticsource/6.0.0-preview.7.21377.19",
"hashPath": "system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"System.Memory/4.5.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
"path": "system.memory/4.5.4",
"hashPath": "system.memory.4.5.4.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {
"type": "package",
"serviceable": true,
"sha512": "sha512-G9eKxgKE5UoyJdB4tpBFCWlgky34N11QDIjn92g6BwqII03yra4raegNNt3y3lmN6k+VDLIzgVMuddZ7LT6TEw==",
"path": "system.runtime.compilerservices.unsafe/6.0.0-preview.7.21377.19",
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512"
},
"DaSaSo.Domain/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -1,9 +0,0 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0-preview.7.21377.19"
}
}
}

View File

@@ -1,25 +1,23 @@
{ {
"format": 1, "format": 1,
"restore": { "restore": {
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {} "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {}
}, },
"projects": { "projects": {
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": { "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj", "projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"projectName": "DaSaSo.Domain", "projectName": "DaSaSo.Domain",
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj", "projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"packagesPath": "C:\\Users\\Damian\\.nuget\\packages\\", "packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\obj\\", "outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "configFilePaths": [
"C:\\Users\\Damian\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@@ -27,7 +25,6 @@
"net6.0" "net6.0"
], ],
"sources": { "sources": {
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {},
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },
@@ -65,22 +62,20 @@
} }
} }
}, },
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": { "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj", "projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"projectName": "DaSaSo.EntityFramework", "projectName": "DaSaSo.EntityFramework",
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj", "projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"packagesPath": "C:\\Users\\Damian\\.nuget\\packages\\", "packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\obj\\", "outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "configFilePaths": [
"C:\\Users\\Damian\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@@ -88,7 +83,6 @@
"net6.0" "net6.0"
], ],
"sources": { "sources": {
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {},
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },
@@ -96,8 +90,8 @@
"net6.0": { "net6.0": {
"targetAlias": "net6.0", "targetAlias": "net6.0",
"projectReferences": { "projectReferences": {
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": { "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj" "projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
} }
} }
} }

View File

@@ -5,13 +5,12 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Damian\.nuget\packages\;C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\KFZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Damian\.nuget\packages\" /> <SourceRoot Include="C:\Users\KFZ\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup> </ItemGroup>
<PropertyGroup> <PropertyGroup>
@@ -21,6 +20,6 @@
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.0-preview.7.21378.4\build\net6.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.0-preview.7.21378.4\build\net6.0\Microsoft.EntityFrameworkCore.Design.props')" /> <Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.0-preview.7.21378.4\build\net6.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.0-preview.7.21378.4\build\net6.0\Microsoft.EntityFrameworkCore.Design.props')" />
</ImportGroup> </ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\Damian\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.0-preview.7.21378.4</PkgMicrosoft_EntityFrameworkCore_Tools> <PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\KFZ\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.0-preview.7.21378.4</PkgMicrosoft_EntityFrameworkCore_Tools>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DaSaSo.EntityFramework")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DaSaSo.EntityFramework")]
[assembly: System.Reflection.AssemblyTitleAttribute("DaSaSo.EntityFramework")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
209fb1fff91e60334a458c398f6d98537494640b

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DaSaSo.EntityFramework
build_property.ProjectDir = C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.EntityFramework\

View File

@@ -0,0 +1,8 @@
// <autogenerated />
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -790,26 +790,23 @@
] ]
}, },
"packageFolders": { "packageFolders": {
"C:\\Users\\Damian\\.nuget\\packages\\": {}, "C:\\Users\\KFZ\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
}, },
"project": { "project": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj", "projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"projectName": "DaSaSo.EntityFramework", "projectName": "DaSaSo.EntityFramework",
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj", "projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"packagesPath": "C:\\Users\\Damian\\.nuget\\packages\\", "packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\obj\\", "outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "configFilePaths": [
"C:\\Users\\Damian\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@@ -817,7 +814,6 @@
"net6.0" "net6.0"
], ],
"sources": { "sources": {
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {},
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },
@@ -825,8 +821,8 @@
"net6.0": { "net6.0": {
"targetAlias": "net6.0", "targetAlias": "net6.0",
"projectReferences": { "projectReferences": {
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": { "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj" "projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
} }
} }
} }

View File

@@ -1,32 +1,32 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "ltaGqGeX0iu5Z9cTRhLMwsgZN+zOtTzXhxUoEJ54YQ/unxriLkawwc9vnDqB6q95WnHan7OEFO/zl+CY8fzIUQ==", "dgSpecHash": "W8J6vnEaQQzzX+xNuuFk3QkPQp8TCGbDg7RMivw1twPpX1cvOVaAnsP7ozFqi2MUXKWJy9+YP9jrMcw58SrSxA==",
"success": true, "success": true,
"projectFilePath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj", "projectFilePath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
"C:\\Users\\Damian\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.design\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.design.6.0.0-preview.7.21378.4.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.design\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.design.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.tools.6.0.0-preview.7.21378.4.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.tools.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.options\\6.0.0-preview.7.21377.19\\microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.options\\6.0.0-preview.7.21377.19\\microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0-preview.7.21377.19\\microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0-preview.7.21377.19\\microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\npgsql\\6.0.0-preview7\\npgsql.6.0.0-preview7.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\npgsql\\6.0.0-preview7\\npgsql.6.0.0-preview7.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\6.0.0-preview7\\npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\6.0.0-preview7\\npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\system.collections.immutable\\6.0.0-preview.7.21377.19\\system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\system.collections.immutable\\6.0.0-preview.7.21377.19\\system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0-preview.7.21377.19\\system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0-preview.7.21377.19\\system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", "C:\\Users\\KFZ\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
"C:\\Users\\Damian\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0-preview.7.21377.19\\system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512" "C:\\Users\\KFZ\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0-preview.7.21377.19\\system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512"
], ],
"logs": [] "logs": []
} }

View File

@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\DaSaSo.Domain\DaSaSo.Domain.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,38 @@
using DaSaSo.Domain.Model;
using DaSaSo.Domain.Service;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.InMemoryProvider
{
public class InMemoryDataProvider<T> : IDataService<T> where T : DomainObject
{
public Task<T> Create(T entity)
{
throw new NotImplementedException();
}
public Task<bool> Delete(int id)
{
throw new NotImplementedException();
}
public Task<T> Get(int id)
{
throw new NotImplementedException();
}
public Task<IEnumerable<T>> GetAll()
{
throw new NotImplementedException();
}
public Task<T> Update(int id, T entity)
{
throw new NotImplementedException();
}
}
}

View File

@@ -0,0 +1,128 @@
{
"format": 1,
"restore": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\DaSaSo.InMemoryProvider.csproj": {}
},
"projects": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"projectName": "DaSaSo.Domain",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\DaSaSo.InMemoryProvider.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\DaSaSo.InMemoryProvider.csproj",
"projectName": "DaSaSo.InMemoryProvider",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\DaSaSo.InMemoryProvider.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\KFZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\KFZ\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DaSaSo.InMemoryProvider")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DaSaSo.InMemoryProvider")]
[assembly: System.Reflection.AssemblyTitleAttribute("DaSaSo.InMemoryProvider")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
15997e08156ee82cc5429eb9c6e4fddeed29cd57

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DaSaSo.InMemoryProvider
build_property.ProjectDir = C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.InMemoryProvider\

View File

@@ -0,0 +1,8 @@
// <autogenerated />
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1 @@
a7fd0ed5421452253308d37ec6ebc794f636fb8e

View File

@@ -0,0 +1,6 @@
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.InMemoryProvider\obj\Debug\net6.0\DaSaSo.InMemoryProvider.csproj.AssemblyReference.cache
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.InMemoryProvider\obj\Debug\net6.0\DaSaSo.InMemoryProvider.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.InMemoryProvider\obj\Debug\net6.0\DaSaSo.InMemoryProvider.AssemblyInfoInputs.cache
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.InMemoryProvider\obj\Debug\net6.0\DaSaSo.InMemoryProvider.AssemblyInfo.cs
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.InMemoryProvider\obj\Debug\net6.0\DaSaSo.InMemoryProvider.ImplicitNamespaceImports.cs
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.InMemoryProvider\obj\Debug\net6.0\DaSaSo.InMemoryProvider.csproj.CoreCompileInputs.cache

View File

@@ -0,0 +1,95 @@
{
"version": 3,
"targets": {
"net6.0": {
"DaSaSo.Domain/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"compile": {
"bin/placeholder/DaSaSo.Domain.dll": {}
},
"runtime": {
"bin/placeholder/DaSaSo.Domain.dll": {}
}
}
}
},
"libraries": {
"DaSaSo.Domain/1.0.0": {
"type": "project",
"path": "../DaSaSo.Domain/DaSaSo.Domain.csproj",
"msbuildProject": "../DaSaSo.Domain/DaSaSo.Domain.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0": [
"DaSaSo.Domain >= 1.0.0"
]
},
"packageFolders": {
"C:\\Users\\KFZ\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\DaSaSo.InMemoryProvider.csproj",
"projectName": "DaSaSo.InMemoryProvider",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\DaSaSo.InMemoryProvider.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "/8uL0/ZdZKljppVVlhGrJA4WQCT72CrjHDE+IX0nKX4fkG3Ui9MJJ0+6pK4TFjE9+UIzaXF2RrEGYXj/ZAYPhA==",
"success": true,
"projectFilePath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.InMemoryProvider\\DaSaSo.InMemoryProvider.csproj",
"expectedPackageFiles": [],
"logs": []
}

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.ViewModel
{
public class BaseViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string? propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}

View File

@@ -0,0 +1,36 @@
using DaSaSo.Domain.Model;
using DaSaSo.Domain.Service;
using Microsoft.Toolkit.Mvvm.Input;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.ViewModel
{
public class ClientEditViewModel : BaseViewModel
{
private Client _model;
private IDataService<Client> _dataService;
public Client Model { get => _model; set => _model = value; }
public IRelayCommand SaveClientCommand { get; set; }
public ClientEditViewModel(IDataService<Client> dataService, Client model)
{
this._model = model;
this._dataService = dataService;
SaveClientCommand = new RelayCommand(SaveClient);
}
private void SaveClient()
{
_dataService.Update(Model.Id, Model);
Mediator.Notify(Enums.EMediator.SHOWCLIENT);
}
}
}

View File

@@ -0,0 +1,117 @@
using DaSaSo.Domain.Model;
using DaSaSo.Domain.Services;
using Microsoft.Toolkit.Mvvm.Input;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace DaSaSo.ViewModel
{
public class ClientListViewModel : BaseViewModel
{
public ObservableCollection<Client> Clients { get; }
private Client? _selectedClient;
private IDataService<Client> _dataService;
IEnumerable<Client>? result;
bool _isLoading = true;
public IRelayCommand SelectClientCommand { get; set; }
public IRelayCommand EditClientCommand { get; set; }
public IRelayCommand AddNewClientCommand { get; set; }
public Client SelectedClient
{
get => _selectedClient;
set
{
if(_selectedClient != value)
{
_selectedClient = value;
SelectClientCommand.NotifyCanExecuteChanged();
EditClientCommand.NotifyCanExecuteChanged();
OnPropertyChanged();
}
}
}
public bool IsLoading
{
get => _isLoading;
set
{
if(_isLoading != value)
{
_isLoading = value;
OnPropertyChanged();
}
}
}
public ClientListViewModel(IDataService<Client> dataService)
{
Clients = new ObservableCollection<Client>();
_dataService = dataService;
//LoadClient();
SelectClientCommand = new RelayCommand(SelectClient, () => SelectedClient != null);
EditClientCommand = new RelayCommand(EditClient, () => SelectedClient != null);
AddNewClientCommand = new RelayCommand(AddNewClient);
}
private async Task<Client> insertNewClient()
{
Client newClient = new Client()
{
Firstname = "",
LastName = "",
Country = "",
Postcode = ""
};
await _dataService.Create(newClient);
return newClient;
}
private async void AddNewClient()
{
var d = insertNewClient();
await d;
Mediator.Notify(Enums.EMediator.EDITCLIENT, d);
}
private void EditClient()
{
Mediator.Notify(Enums.EMediator.EDITCLIENT, SelectedClient);
}
private void SelectClient()
{
Mediator.Notify(Enums.EMediator.SELECTEDCLIENT, SelectedClient);
}
public async void LoadClient()
{
IsLoading = true;
var clients = await _dataService.GetAll();
//
InitCollection(Clients, clients);
IsLoading = false;
}
private void InitCollection(ObservableCollection<Client> target, IEnumerable<Client> source)
{
target.Clear();
foreach (var i in source)
target.Add(i);
}
}
}

View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.1.0-rc1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DaSaSo.Domain\DaSaSo.Domain.csproj" />
<ProjectReference Include="..\DaSaSo.EntityFramework\DaSaSo.EntityFramework.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.ViewModel.Enums
{
enum EMediator
{
SHOWCLIENT,
SELECTEDCLIENT,
EDITCLIENT,
SHOWPROJEKT,
SELECTEDPROJEKT,
EDITPROJEKT
}
}

View File

@@ -0,0 +1,48 @@
using DaSaSo.ViewModel.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.ViewModel
{
class Mediator
{
private static IDictionary<EMediator, List<Action<object>>> pl_dict = new Dictionary<EMediator, List<Action<object>>>();
public static void Subscribe(EMediator token, Action<object> callback)
{
if (!pl_dict.ContainsKey(token))
{
var list = new List<Action<object>>();
list.Add(callback);
pl_dict.Add(token, list);
}
else
{
bool found = false;
foreach (var item in pl_dict[token])
{
if (item.Method.ToString() == callback.Method.ToString())
found = true;
}
if (!found)
pl_dict[token].Add(callback);
}
}
public static void Unsubscribe(EMediator token, Action<object> callback)
{
if (pl_dict.ContainsKey(token))
pl_dict[token].Remove(callback);
}
public static void Notify(EMediator token, object? args = null)
{
if (pl_dict.ContainsKey(token))
{
foreach (var callback in pl_dict[token])
callback(args);
}
}
}
}

View File

@@ -0,0 +1,43 @@
using DaSaSo.Domain.Model;
using DaSaSo.EntityFramework.Services;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.ViewModel
{
public class ProjectListViewModel : BaseViewModel
{
private GenericDataService<Project> genericDataService;
private Client selectedClient;
public ObservableCollection<Project> Projekte { get; }
public ProjectListViewModel(GenericDataService<Project> genericDataService, Client selectedClient)
{
this.genericDataService = genericDataService;
Projekte = new ObservableCollection<Project>();
LoadProjecte();
}
public async void LoadProjecte()
{
var projekte = await genericDataService.GetAll();
//
InitCollection(Projekte, projekte);
}
private void InitCollection(ObservableCollection<Project> target, IEnumerable<Project> source)
{
target.Clear();
foreach (var i in source)
target.Add(i);
}
}
}

View File

@@ -0,0 +1,134 @@
using DaSaSo.Domain.Model;
using DaSaSo.EntityFramework;
using DaSaSo.EntityFramework.Services;
using Microsoft.Toolkit.Mvvm.Input;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace DaSaSo.ViewModel
{
public sealed class MainWindowViewModel : BaseViewModel
{
private BaseViewModel _actualViewModel;
private Client _selectedClient;
private Project _selectedProject;
private Buildingsite _selectedBuildingsite;
public IRelayCommand ListClientsCommand { get; set; }
public IRelayCommand ListProjectCommand { get; set; }
public IRelayCommand ListBuildingsiteCommand { get; set; }
public IRelayCommand ListSewerObjectsCommand { get; set; }
public BaseViewModel ActualViewModel
{
get => _actualViewModel;
set
{
if(_actualViewModel != value)
{
_actualViewModel = value;
OnPropertyChanged();
}
}
}
public Project SelectedProject
{
get => _selectedProject;
set
{
if(value == null)
{
ListBuildingsiteCommand.NotifyCanExecuteChanged();
}
if(_selectedProject != value && value != null)
{
_selectedProject = value;
OnPropertyChanged();
ListBuildingsiteCommand.NotifyCanExecuteChanged();
}
}
}
public Buildingsite SelectedBuildingsite
{
get => _selectedBuildingsite;
set
{
if(value == null)
{
ListSewerObjectsCommand.NotifyCanExecuteChanged();
}
if(_selectedBuildingsite != value && value != null)
{
_selectedBuildingsite = value;
OnPropertyChanged();
ListSewerObjectsCommand.NotifyCanExecuteChanged();
}
}
}
public Client SelectedClient
{
get => _selectedClient;
set
{
if(_selectedClient != value)
{
_selectedClient = value;
SelectedProject = null;
OnPropertyChanged();
ListProjectCommand.NotifyCanExecuteChanged();
}
}
}
public MainWindowViewModel()
{
ListClientsCommand = new RelayCommand(showClients);
ListProjectCommand = new RelayCommand(listProjecte, () => SelectedClient != null);
ListBuildingsiteCommand = new RelayCommand(listBuildingsite, () => SelectedProject != null);
ListSewerObjectsCommand = new RelayCommand(listSewerObjects, () => SelectedBuildingsite != null);
Mediator.Subscribe(Enums.EMediator.SELECTEDCLIENT, (tt) =>
{
SelectedClient = (Client)tt;
listProjecte();
});
Mediator.Subscribe(Enums.EMediator.EDITCLIENT, (tt) =>
{
ActualViewModel = new ClientEditViewModel(new GenericDataService<Client>(new DaSaSoDbContextFactory()),
(Client)tt);
});
Mediator.Subscribe(Enums.EMediator.SHOWCLIENT, (tt) => {
ActualViewModel = null;
});
}
private void showClients()
{
ClientListViewModel clientListViewModel = new ClientListViewModel(new GenericDataService<Client>(new DaSaSoDbContextFactory()));
ActualViewModel = clientListViewModel;
clientListViewModel.LoadClient();
}
private void listSewerObjects()
{
throw new NotImplementedException();
}
private void listBuildingsite()
{
throw new NotImplementedException();
}
private void listProjecte()
{
Debugger.Break();
ActualViewModel = new ProjectListViewModel(new GenericDataService<Project>(new DaSaSoDbContextFactory()),SelectedClient);
}
}
}

View File

@@ -0,0 +1,215 @@
{
"format": 1,
"restore": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj": {}
},
"projects": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"projectName": "DaSaSo.Domain",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"projectName": "DaSaSo.EntityFramework",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.EntityFrameworkCore": {
"target": "Package",
"version": "[6.0.0-preview.7.21378.4, )"
},
"Microsoft.EntityFrameworkCore.Tools": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[6.0.0-preview.7.21378.4, )"
},
"Npgsql.EntityFrameworkCore.PostgreSQL": {
"target": "Package",
"version": "[6.0.0-preview7, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj",
"projectName": "DaSaSo.ViewModel",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.Toolkit.Mvvm": {
"target": "Package",
"version": "[7.1.0-rc1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\KFZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\KFZ\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DaSaSo.ViewModel")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DaSaSo.ViewModel")]
[assembly: System.Reflection.AssemblyTitleAttribute("DaSaSo.ViewModel")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
9296eb9493619f0db2c51e22bf0802b7b927bb8b

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DaSaSo.ViewModel
build_property.ProjectDir = C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\

View File

@@ -0,0 +1,8 @@
// <autogenerated />
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1 @@
889f8e7882740fed9de799d73509df45ae44f890

View File

@@ -0,0 +1,17 @@
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\bin\Debug\net6.0\DaSaSo.ViewModel.deps.json
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\bin\Debug\net6.0\DaSaSo.ViewModel.dll
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\bin\Debug\net6.0\ref\DaSaSo.ViewModel.dll
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\bin\Debug\net6.0\DaSaSo.ViewModel.pdb
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\bin\Debug\net6.0\DaSaSo.Domain.dll
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\bin\Debug\net6.0\DaSaSo.EntityFramework.dll
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\bin\Debug\net6.0\DaSaSo.Domain.pdb
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\bin\Debug\net6.0\DaSaSo.EntityFramework.pdb
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\DaSaSo.ViewModel.csproj.AssemblyReference.cache
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\DaSaSo.ViewModel.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\DaSaSo.ViewModel.AssemblyInfoInputs.cache
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\DaSaSo.ViewModel.AssemblyInfo.cs
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\DaSaSo.ViewModel.ImplicitNamespaceImports.cs
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\DaSaSo.ViewModel.csproj.CoreCompileInputs.cache
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\DaSaSo.ViewModel.dll
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\ref\DaSaSo.ViewModel.dll
C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.ViewModel\obj\Debug\net6.0\DaSaSo.ViewModel.pdb

View File

@@ -0,0 +1,828 @@
{
"version": 3,
"targets": {
"net6.0": {
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Analyzers": "6.0.0-preview.7.21378.4",
"Microsoft.Extensions.Caching.Memory": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging": "6.0.0-preview.7.21377.19",
"System.Collections.Immutable": "6.0.0-preview.7.21377.19",
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
}
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
}
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {
"type": "package",
"compile": {
"lib/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/_._": {}
}
},
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"System.Buffers": "4.5.1",
"System.Memory": "4.5.4"
},
"compile": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"Microsoft.Toolkit.Mvvm/7.1.0-rc1": {
"type": "package",
"compile": {
"lib/net5.0/Microsoft.Toolkit.Mvvm.dll": {}
},
"runtime": {
"lib/net5.0/Microsoft.Toolkit.Mvvm.dll": {}
}
},
"Npgsql/6.0.0-preview7": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
},
"compile": {
"lib/net6.0/Npgsql.dll": {}
},
"runtime": {
"lib/net6.0/Npgsql.dll": {}
}
},
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Relational": "6.0.0-preview.7.21378.4",
"Npgsql": "6.0.0-preview7"
},
"compile": {
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
},
"runtime": {
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
}
},
"System.Buffers/4.5.1": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/net6.0/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/net6.0/System.Collections.Immutable.dll": {}
}
},
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Memory/4.5.4": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/_._": {}
},
"runtime": {
"lib/netcoreapp2.1/_._": {}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"DaSaSo.Domain/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"compile": {
"bin/placeholder/DaSaSo.Domain.dll": {}
},
"runtime": {
"bin/placeholder/DaSaSo.Domain.dll": {}
}
},
"DaSaSo.EntityFramework/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
"DaSaSo.Domain": "1.0.0",
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.0-preview7"
},
"compile": {
"bin/placeholder/DaSaSo.EntityFramework.dll": {}
},
"runtime": {
"bin/placeholder/DaSaSo.EntityFramework.dll": {}
}
}
}
},
"libraries": {
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
"sha512": "BdupTWakC6DOZ4/+nsTXDYiyshJsdNvxIq3e++qHYyOU12awyHHF//ISmqJvZgC6lKTEn/0gKHQcMZwtLZiAnA==",
"type": "package",
"path": "microsoft.entityframeworkcore/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.xml",
"microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
"sha512": "OBWmLgRYZLKu+umANQVnYCSvQbjEkQOfOSVAbyTUfvkAAKZXbSGr9DWi9uFjTk6E5/6a+aBQP4onnEfHhYwPsg==",
"type": "package",
"path": "microsoft.entityframeworkcore.abstractions/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
"microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.abstractions.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {
"sha512": "4TYb+ZCPZ2/+pj4d/cpYXKQm4g7cP4J5jZR9UfJJXvOkOyakxcckYZVU3UT118UDTNW4D6YAB11ItsJ/+9J7GQ==",
"type": "package",
"path": "microsoft.entityframeworkcore.analyzers/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
"lib/netstandard2.0/_._",
"microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.analyzers.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
"sha512": "thmbe4H6s2h4XpKMOGSO5ke/XOU5xF5Y3r1nc9GP9fPORTbNtheOiXL2ivVJ7TyGN83d105iCr693SKlM2Sc1A==",
"type": "package",
"path": "microsoft.entityframeworkcore.relational/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
"microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.relational.nuspec"
]
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "8W2Ywl5KuZ+qSPFipRXse8FaqeH4Fj5fxmqgvbScGoNdgOMjkSR/5ms1Q2FsZbVAiwx09Ww82MBNCFarwccGfg==",
"type": "package",
"path": "microsoft.extensions.caching.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
"microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.caching.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
"sha512": "MEIhC9Oog1Jlxn0wRHdkaZ6rdJQHEOPNuCYeI9skMKwilY52R3ak+oXQXYNoTGcvyH4g9zYlUVpHmu4t7R/pOA==",
"type": "package",
"path": "microsoft.extensions.caching.memory/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Caching.Memory.dll",
"lib/net461/Microsoft.Extensions.Caching.Memory.xml",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
"microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.caching.memory.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "E7jldErD3SGhDuxilC2H7UaATGpJJc+pYpYpsiSEhIveM6ldSwjRCqg3iousXnF1zdDMRESsCROYwPIVygoyVQ==",
"type": "package",
"path": "microsoft.extensions.configuration.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
"microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.configuration.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
"sha512": "BjESHgE6sL2YfUsc7fyA6zWax/ByG0We+F5hRk9hvlSupFMzaMvKWhjAAzZnQG+tvqsrZxydrZtganxDpuqqeQ==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.DependencyInjection.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
"microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.dependencyinjection.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "atV1M3Bmuc9+mIW1/AxgfYhZBH74P5897+sOq5zXQaNA/OBqAax1NQ/LZrIVqpFMYk5aPVv4vn2uirQ4Peuglg==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
"sha512": "kOrN0Tazrui2vh1tSqdI33lwZPBCPeyR7z8pWOR3i4LembIq5LBtZ6kNQMcp4vrrkMwafu6vPcbgaZy0gPKb1g==",
"type": "package",
"path": "microsoft.extensions.logging/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Logging.dll",
"lib/net461/Microsoft.Extensions.Logging.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
"microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.logging.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "cZMOsb9rKHMIPs170MUOnX3vB6lJJG3N4mO+ViX9o838Qvkq2+IEJus1B7oE2u3zCCqCUB9foa/t7qgUeSaRHg==",
"type": "package",
"path": "microsoft.extensions.logging.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"analyzers/dotnet/cs/Microsoft.Extensions.Logging.Generators.dll",
"analyzers/dotnet/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
"microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.logging.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
"sha512": "OiAS21Wg1X1qm4yE54PPJahF+nogKn5A+1UYcewvsASDcUudjllpCGMrqh5cI27pIst5VbFhq1KGTwzhU/GywA==",
"type": "package",
"path": "microsoft.extensions.options/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Options.dll",
"lib/net461/Microsoft.Extensions.Options.xml",
"lib/netstandard2.0/Microsoft.Extensions.Options.dll",
"lib/netstandard2.0/Microsoft.Extensions.Options.xml",
"lib/netstandard2.1/Microsoft.Extensions.Options.dll",
"lib/netstandard2.1/Microsoft.Extensions.Options.xml",
"microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.options.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
"sha512": "dbYTaKld3fbZETLzYknl5np8/rnas3isR3RQi0xvZNrz4S1bhn7lsEbu8ACwMAQxPxiKBgl59RKUNVmqjJ4Aww==",
"type": "package",
"path": "microsoft.extensions.primitives/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.Primitives.dll",
"lib/net461/Microsoft.Extensions.Primitives.xml",
"lib/net6.0/Microsoft.Extensions.Primitives.dll",
"lib/net6.0/Microsoft.Extensions.Primitives.xml",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
"microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.primitives.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Toolkit.Mvvm/7.1.0-rc1": {
"sha512": "J0LJvH2q/pUNfIB9ucC1K+hTrMyZj39sP61XhSvSV09leW32miCKSYmGb5Ad/PRPHTC3xoCFTLAhfeBeKTipIw==",
"type": "package",
"path": "microsoft.toolkit.mvvm/7.1.0-rc1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"License.md",
"analyzers/dotnet/cs/Microsoft.Toolkit.Mvvm.SourceGenerators.dll",
"analyzers/dotnet/cs/Microsoft.Toolkit.Mvvm.SourceGenerators.pdb",
"analyzers/dotnet/cs/Microsoft.Toolkit.Mvvm.SourceGenerators.xml",
"lib/net5.0/Microsoft.Toolkit.Mvvm.dll",
"lib/net5.0/Microsoft.Toolkit.Mvvm.pdb",
"lib/net5.0/Microsoft.Toolkit.Mvvm.xml",
"lib/netstandard2.0/Microsoft.Toolkit.Mvvm.dll",
"lib/netstandard2.0/Microsoft.Toolkit.Mvvm.pdb",
"lib/netstandard2.0/Microsoft.Toolkit.Mvvm.xml",
"lib/netstandard2.1/Microsoft.Toolkit.Mvvm.dll",
"lib/netstandard2.1/Microsoft.Toolkit.Mvvm.pdb",
"lib/netstandard2.1/Microsoft.Toolkit.Mvvm.xml",
"microsoft.toolkit.mvvm.7.1.0-rc1.nupkg.sha512",
"microsoft.toolkit.mvvm.nuspec"
]
},
"Npgsql/6.0.0-preview7": {
"sha512": "dOdWAo4aYu5RgEtbcXqKBHFp4s6TOSsUSwTC2rcsZd5quFS7geeUaXHnJlCxOYq2tNcFpTHNVFRlHB1OgKAw7w==",
"type": "package",
"path": "npgsql/6.0.0-preview7",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net5.0/Npgsql.dll",
"lib/net5.0/Npgsql.xml",
"lib/net6.0/Npgsql.dll",
"lib/net6.0/Npgsql.xml",
"lib/netcoreapp3.1/Npgsql.dll",
"lib/netcoreapp3.1/Npgsql.xml",
"lib/netstandard2.0/Npgsql.dll",
"lib/netstandard2.0/Npgsql.xml",
"lib/netstandard2.1/Npgsql.dll",
"lib/netstandard2.1/Npgsql.xml",
"npgsql.6.0.0-preview7.nupkg.sha512",
"npgsql.nuspec",
"postgresql.png"
]
},
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
"sha512": "nzDmkNImvzXtgQK8gN1C5F1eYUr9XSKGidWY+T0EjCeaKzuQnvg2Rac785/CtYsdC4/JWsgeI0oZaH1+Yb6JdQ==",
"type": "package",
"path": "npgsql.entityframeworkcore.postgresql/6.0.0-preview7",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
"npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
"npgsql.entityframeworkcore.postgresql.nuspec",
"postgresql.png"
]
},
"System.Buffers/4.5.1": {
"sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
"type": "package",
"path": "system.buffers/4.5.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Buffers.dll",
"lib/net461/System.Buffers.xml",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.1/System.Buffers.dll",
"lib/netstandard1.1/System.Buffers.xml",
"lib/netstandard2.0/System.Buffers.dll",
"lib/netstandard2.0/System.Buffers.xml",
"lib/uap10.0.16299/_._",
"ref/net45/System.Buffers.dll",
"ref/net45/System.Buffers.xml",
"ref/netcoreapp2.0/_._",
"ref/netstandard1.1/System.Buffers.dll",
"ref/netstandard1.1/System.Buffers.xml",
"ref/netstandard2.0/System.Buffers.dll",
"ref/netstandard2.0/System.Buffers.xml",
"ref/uap10.0.16299/_._",
"system.buffers.4.5.1.nupkg.sha512",
"system.buffers.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {
"sha512": "TnnzExYnPymCOxNLnOgpTl0GAnXtm3urz/XNnLxutN5uRFMT6TRaUpL2j8ADyXX4JkSJcyXOQ3GI9DLqBzRmIA==",
"type": "package",
"path": "system.collections.immutable/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Collections.Immutable.dll",
"lib/net461/System.Collections.Immutable.xml",
"lib/net6.0/System.Collections.Immutable.dll",
"lib/net6.0/System.Collections.Immutable.xml",
"lib/netstandard2.0/System.Collections.Immutable.dll",
"lib/netstandard2.0/System.Collections.Immutable.xml",
"system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.collections.immutable.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {
"sha512": "bnq8waIAuRZSU63bQQYzCTyfhqCSKTKWfy2oxBcVWh79d8WaiC4vtvyR0kAcF4YMrhK4YwjlXLblgfifXImPGw==",
"type": "package",
"path": "system.diagnostics.diagnosticsource/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Diagnostics.DiagnosticSource.dll",
"lib/net461/System.Diagnostics.DiagnosticSource.xml",
"lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
"lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
"lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
"lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
"lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
"system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.diagnostics.diagnosticsource.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Memory/4.5.4": {
"sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
"type": "package",
"path": "system.memory/4.5.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Memory.dll",
"lib/net461/System.Memory.xml",
"lib/netcoreapp2.1/_._",
"lib/netstandard1.1/System.Memory.dll",
"lib/netstandard1.1/System.Memory.xml",
"lib/netstandard2.0/System.Memory.dll",
"lib/netstandard2.0/System.Memory.xml",
"ref/netcoreapp2.1/_._",
"system.memory.4.5.4.nupkg.sha512",
"system.memory.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {
"sha512": "G9eKxgKE5UoyJdB4tpBFCWlgky34N11QDIjn92g6BwqII03yra4raegNNt3y3lmN6k+VDLIzgVMuddZ7LT6TEw==",
"type": "package",
"path": "system.runtime.compilerservices.unsafe/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
"ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
"system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.runtime.compilerservices.unsafe.nuspec",
"useSharedDesignerContext.txt"
]
},
"DaSaSo.Domain/1.0.0": {
"type": "project",
"path": "../DaSaSo.Domain/DaSaSo.Domain.csproj",
"msbuildProject": "../DaSaSo.Domain/DaSaSo.Domain.csproj"
},
"DaSaSo.EntityFramework/1.0.0": {
"type": "project",
"path": "../DaSaSo.EntityFramework/DaSaSo.EntityFramework.csproj",
"msbuildProject": "../DaSaSo.EntityFramework/DaSaSo.EntityFramework.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0": [
"DaSaSo.Domain >= 1.0.0",
"DaSaSo.EntityFramework >= 1.0.0",
"Microsoft.Toolkit.Mvvm >= 7.1.0-rc1"
]
},
"packageFolders": {
"C:\\Users\\KFZ\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj",
"projectName": "DaSaSo.ViewModel",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.Toolkit.Mvvm": {
"target": "Package",
"version": "[7.1.0-rc1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,30 @@
{
"version": 2,
"dgSpecHash": "BsXYL6fPCY68fbqVQps/JXkYtVNTSLPKuuWIJufJG9a09D95M91WF9fug4fNiOP13v/QPOTrZK/ZeflCn+S28Q==",
"success": true,
"projectFilePath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj",
"expectedPackageFiles": [
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.options\\6.0.0-preview.7.21377.19\\microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0-preview.7.21377.19\\microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.toolkit.mvvm\\7.1.0-rc1\\microsoft.toolkit.mvvm.7.1.0-rc1.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\npgsql\\6.0.0-preview7\\npgsql.6.0.0-preview7.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\6.0.0-preview7\\npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.collections.immutable\\6.0.0-preview.7.21377.19\\system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0-preview.7.21377.19\\system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0-preview.7.21377.19\\system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512"
],
"logs": []
}

12
DaSaSo.Wpf/App.xaml Normal file
View File

@@ -0,0 +1,12 @@
<Application x:Class="DaSaSo.Wpf.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:DaSaSo.Wpf">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="./my_controls.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>

39
DaSaSo.Wpf/App.xaml.cs Normal file
View File

@@ -0,0 +1,39 @@
using DaSaSo.Domain.Model;
using DaSaSo.Domain.Services;
using DaSaSo.EntityFramework;
using DaSaSo.ViewModel;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace DaSaSo.Wpf
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
IServiceProvider serviceProvider = CreateServiceProvider();
base.OnStartup(e);
MainWindow? window = new MainWindow() { DataContext = new MainWindowViewModel() };
window.Show();
}
private IServiceProvider CreateServiceProvider()
{
IServiceCollection services = new ServiceCollection();
services.AddSingleton<DaSaSoDbContext>();
services.AddSingleton<IDataService<Client>, ClientDataService>():
return services.BuildServiceProvider();
}
}
}

View File

@@ -0,0 +1,10 @@
using System.Windows;
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]

View File

@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\DaSaSo.Domain\DaSaSo.Domain.csproj" />
<ProjectReference Include="..\DaSaSo.ViewModel\DaSaSo.ViewModel.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<ItemGroup>
<ApplicationDefinition Update="App.xaml">
<SubType>Designer</SubType>
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<Compile Update="View\Client\ClientEditView.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="View\Client\ClientListView.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="View\Project\ProjectListView.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="my_controls.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="View\Client\ClientEditView.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="View\Client\ClientListView.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="View\Project\ProjectListView.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Window\MainWindow.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,39 @@
<UserControl x:Class="DaSaSo.Wpf.View.Client.ClientEditView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:DaSaSo.Wpf.View.Client" xmlns:viewmodel="clr-namespace:DaSaSo.ViewModel;assembly=DaSaSo.ViewModel" d:DataContext="{d:DesignInstance Type=viewmodel:ClientEditViewModel}"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="Vorname" />
<TextBlock Grid.Row="1" Text="Nachname" />
<TextBlock Grid.Row="2" Text="Strasse" />
<TextBlock Grid.Row="3" Text="Postleitzahl" />
<TextBlock Grid.Row="4" Text="Ort" />
<TextBox Grid.Column="1" Grid.Row="0" Text="{Binding Model.Firstname}" />
<TextBox Grid.Column="1" Grid.Row="1" Text="{Binding Model.LastName}" />
<TextBox Grid.Column="1" Grid.Row="2" Text="{Binding Model.Street}" />
<TextBox Grid.Column="1" Grid.Row="3" Text="{Binding Model.Postcode}" />
<TextBox Grid.Column="1" Grid.Row="4" Text="{Binding Model.Country}" />
<Button Grid.Row="5" Grid.ColumnSpan="2" Command="{Binding SaveClientCommand}" Content="Daten Speichern" />
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace DaSaSo.Wpf.View.Client
{
/// <summary>
/// Interaction logic for ClientEditView.xaml
/// </summary>
public partial class ClientEditView : UserControl
{
public ClientEditView()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,24 @@
<UserControl x:Class="DaSaSo.Wpf.View.Client.ClientListView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:DaSaSo.Wpf.View.Client" xmlns:viewmodel="clr-namespace:DaSaSo.ViewModel;assembly=DaSaSo.ViewModel" d:DataContext="{d:DesignInstance Type=viewmodel:ClientListViewModel}"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
</UserControl.Resources>
<Grid>
<StackPanel>
<TextBlock Text="Kundenliste" />
<ListView ItemsSource="{Binding Clients}" DisplayMemberPath="Firstname" SelectedItem="{Binding SelectedClient, Mode=TwoWay}"/>
<Button Content="Kunde auswählen" Command="{Binding SelectClientCommand}" />
<Button Content="Kunde Editieren" Command="{Binding EditClientCommand}"/>
<Button Content="Kunde Hinzufügen" Command="{Binding AddNewClientCommand}" />
</StackPanel>
<Border Background="Gray" d:Visibility="Hidden" Visibility="{Binding IsLoading, Converter={StaticResource BooleanToVisibilityConverter}}">
<TextBlock Foreground="White" FontSize="40" Text="Loading"></TextBlock>
</Border>
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace DaSaSo.Wpf.View.Client
{
/// <summary>
/// Interaction logic for ClientListView.xaml
/// </summary>
public partial class ClientListView : UserControl
{
public ClientListView()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,14 @@
<UserControl x:Class="DaSaSo.Wpf.View.Project.ProjectListView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:DaSaSo.Wpf.View.Project" xmlns:viewmodel="clr-namespace:DaSaSo.ViewModel;assembly=DaSaSo.ViewModel" d:DataContext="{d:DesignInstance Type=viewmodel:ProjectListViewModel}"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<DataGrid ItemsSource="{Binding Projekte}">
</DataGrid>
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace DaSaSo.Wpf.View.Project
{
/// <summary>
/// Interaction logic for ProjectListView.xaml
/// </summary>
public partial class ProjectListView : UserControl
{
public ProjectListView()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,42 @@
<Window x:Class="DaSaSo.Wpf.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ClientViews="clr-namespace:DaSaSo.Wpf.View.Client"
xmlns:ProjektViews="clr-namespace:DaSaSo.Wpf.View.Project"
xmlns:local="clr-namespace:DaSaSo.Wpf" xmlns:viewmodel="clr-namespace:DaSaSo.ViewModel;assembly=DaSaSo.ViewModel" d:DataContext="{d:DesignInstance Type=viewmodel:MainWindowViewModel}"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Window.Resources>
<DataTemplate DataType="{x:Type viewmodel:ClientListViewModel}">
<ClientViews:ClientListView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewmodel:ClientEditViewModel}">
<ClientViews:ClientEditView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewmodel:ProjectListViewModel}">
<ProjektViews:ProjectListView />
</DataTemplate>
</Window.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="20" />
</Grid.RowDefinitions>
<StackPanel Grid.Column="0" Grid.Row="0">
<RadioButton Content="Kunden" Style="{StaticResource ToggleButtonList}" Command="{Binding ListClientsCommand}" />
<RadioButton Content="Projekte" Style="{StaticResource ToggleButtonList}" Command="{Binding ListProjectCommand}" />
<RadioButton Content="Baustellen" Style="{StaticResource ToggleButtonList}" Command="{Binding ListBuildingsiteCommand}" />
<RadioButton Content="Objekte" Style="{StaticResource ToggleButtonList}" Command="{Binding ListSewerObjectsCommand}" />
</StackPanel>
<ContentControl Grid.Column="1" Grid.Row="0" Content="{Binding ActualViewModel}" />
<StatusBar Grid.Row="1" Grid.ColumnSpan="2">
<StatusBarItem Content="{Binding SelectedClient.Firstname}" />
</StatusBar>
</Grid>
</Window>

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace DaSaSo.Wpf
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,30 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="ToggleButtonList" TargetType="{x:Type ToggleButton}">
<Setter Property="FrameworkElement.OverridesDefaultStyle" Value="True"/>
<Setter Property="FrameworkElement.FocusVisualStyle" Value="{x:Null}"/>
<Setter Property="Width" Value="170" />
<Setter Property="Height" Value="70" />
<Setter Property="Margin" Value="2" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Grid>
<Rectangle Name="rect" Fill="#FF808080" Stretch="Fill"/>
<ContentPresenter VerticalAlignment="Top" HorizontalAlignment="Left" Margin="5" RecognizesAccessKey="True" TextBlock.FontFamily="Seggeo" TextBlock.FontSize="16" TextBlock.Foreground="#FFFFFFFF" TextBlock.FontWeight="Light" />
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="UIElement.IsMouseOver" Value="True">
<Setter TargetName="rect" Property="Shape.Fill" Value="BlueViolet"/>
<Setter Property="Foreground" Value="#FFFFFFFF"/>
</Trigger>
<Trigger Property="ToggleButton.IsChecked" Value="True">
<Setter TargetName="rect" Property="Shape.Fill" Value="BlueViolet" />
<Setter Property="Foreground" Value="#FFFFFFFF" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>

View File

@@ -0,0 +1,283 @@
{
"format": 1,
"restore": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\DaSaSo.Wpf.csproj": {}
},
"projects": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"projectName": "DaSaSo.Domain",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"projectName": "DaSaSo.EntityFramework",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.EntityFrameworkCore": {
"target": "Package",
"version": "[6.0.0-preview.7.21378.4, )"
},
"Microsoft.EntityFrameworkCore.Tools": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[6.0.0-preview.7.21378.4, )"
},
"Npgsql.EntityFrameworkCore.PostgreSQL": {
"target": "Package",
"version": "[6.0.0-preview7, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj",
"projectName": "DaSaSo.ViewModel",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.Toolkit.Mvvm": {
"target": "Package",
"version": "[7.1.0-rc1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\DaSaSo.Wpf.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\DaSaSo.Wpf.csproj",
"projectName": "DaSaSo.Wpf",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\DaSaSo.Wpf.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\KFZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\KFZ\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,844 @@
{
"version": 3,
"targets": {
"net6.0-windows7.0": {
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Analyzers": "6.0.0-preview.7.21378.4",
"Microsoft.Extensions.Caching.Memory": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging": "6.0.0-preview.7.21377.19",
"System.Collections.Immutable": "6.0.0-preview.7.21377.19",
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
}
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
}
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {
"type": "package",
"compile": {
"lib/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/_._": {}
}
},
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"System.Buffers": "4.5.1",
"System.Memory": "4.5.4"
},
"compile": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
},
"compile": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"Microsoft.Toolkit.Mvvm/7.1.0-rc1": {
"type": "package",
"compile": {
"lib/net5.0/Microsoft.Toolkit.Mvvm.dll": {}
},
"runtime": {
"lib/net5.0/Microsoft.Toolkit.Mvvm.dll": {}
}
},
"Npgsql/6.0.0-preview7": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
},
"compile": {
"lib/net6.0/Npgsql.dll": {}
},
"runtime": {
"lib/net6.0/Npgsql.dll": {}
}
},
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
"type": "package",
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
"Microsoft.EntityFrameworkCore.Relational": "6.0.0-preview.7.21378.4",
"Npgsql": "6.0.0-preview7"
},
"compile": {
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
},
"runtime": {
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
}
},
"System.Buffers/4.5.1": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/net6.0/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/net6.0/System.Collections.Immutable.dll": {}
}
},
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Memory/4.5.4": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/_._": {}
},
"runtime": {
"lib/netcoreapp2.1/_._": {}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {
"type": "package",
"compile": {
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"DaSaSo.Domain/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"compile": {
"bin/placeholder/DaSaSo.Domain.dll": {}
},
"runtime": {
"bin/placeholder/DaSaSo.Domain.dll": {}
}
},
"DaSaSo.EntityFramework/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
"DaSaSo.Domain": "1.0.0",
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
"Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.0-preview7"
},
"compile": {
"bin/placeholder/DaSaSo.EntityFramework.dll": {}
},
"runtime": {
"bin/placeholder/DaSaSo.EntityFramework.dll": {}
}
},
"DaSaSo.ViewModel/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
"DaSaSo.Domain": "1.0.0",
"DaSaSo.EntityFramework": "1.0.0",
"Microsoft.Toolkit.Mvvm": "7.1.0-rc1"
},
"compile": {
"bin/placeholder/DaSaSo.ViewModel.dll": {}
},
"runtime": {
"bin/placeholder/DaSaSo.ViewModel.dll": {}
}
}
}
},
"libraries": {
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
"sha512": "BdupTWakC6DOZ4/+nsTXDYiyshJsdNvxIq3e++qHYyOU12awyHHF//ISmqJvZgC6lKTEn/0gKHQcMZwtLZiAnA==",
"type": "package",
"path": "microsoft.entityframeworkcore/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.xml",
"microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
"sha512": "OBWmLgRYZLKu+umANQVnYCSvQbjEkQOfOSVAbyTUfvkAAKZXbSGr9DWi9uFjTk6E5/6a+aBQP4onnEfHhYwPsg==",
"type": "package",
"path": "microsoft.entityframeworkcore.abstractions/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
"microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.abstractions.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {
"sha512": "4TYb+ZCPZ2/+pj4d/cpYXKQm4g7cP4J5jZR9UfJJXvOkOyakxcckYZVU3UT118UDTNW4D6YAB11ItsJ/+9J7GQ==",
"type": "package",
"path": "microsoft.entityframeworkcore.analyzers/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
"lib/netstandard2.0/_._",
"microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.analyzers.nuspec"
]
},
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
"sha512": "thmbe4H6s2h4XpKMOGSO5ke/XOU5xF5Y3r1nc9GP9fPORTbNtheOiXL2ivVJ7TyGN83d105iCr693SKlM2Sc1A==",
"type": "package",
"path": "microsoft.entityframeworkcore.relational/6.0.0-preview.7.21378.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
"microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
"microsoft.entityframeworkcore.relational.nuspec"
]
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "8W2Ywl5KuZ+qSPFipRXse8FaqeH4Fj5fxmqgvbScGoNdgOMjkSR/5ms1Q2FsZbVAiwx09Ww82MBNCFarwccGfg==",
"type": "package",
"path": "microsoft.extensions.caching.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
"microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.caching.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
"sha512": "MEIhC9Oog1Jlxn0wRHdkaZ6rdJQHEOPNuCYeI9skMKwilY52R3ak+oXQXYNoTGcvyH4g9zYlUVpHmu4t7R/pOA==",
"type": "package",
"path": "microsoft.extensions.caching.memory/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Caching.Memory.dll",
"lib/net461/Microsoft.Extensions.Caching.Memory.xml",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
"microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.caching.memory.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "E7jldErD3SGhDuxilC2H7UaATGpJJc+pYpYpsiSEhIveM6ldSwjRCqg3iousXnF1zdDMRESsCROYwPIVygoyVQ==",
"type": "package",
"path": "microsoft.extensions.configuration.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
"microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.configuration.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
"sha512": "BjESHgE6sL2YfUsc7fyA6zWax/ByG0We+F5hRk9hvlSupFMzaMvKWhjAAzZnQG+tvqsrZxydrZtganxDpuqqeQ==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.DependencyInjection.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
"microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.dependencyinjection.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "atV1M3Bmuc9+mIW1/AxgfYhZBH74P5897+sOq5zXQaNA/OBqAax1NQ/LZrIVqpFMYk5aPVv4vn2uirQ4Peuglg==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
"sha512": "kOrN0Tazrui2vh1tSqdI33lwZPBCPeyR7z8pWOR3i4LembIq5LBtZ6kNQMcp4vrrkMwafu6vPcbgaZy0gPKb1g==",
"type": "package",
"path": "microsoft.extensions.logging/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Logging.dll",
"lib/net461/Microsoft.Extensions.Logging.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
"microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.logging.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
"sha512": "cZMOsb9rKHMIPs170MUOnX3vB6lJJG3N4mO+ViX9o838Qvkq2+IEJus1B7oE2u3zCCqCUB9foa/t7qgUeSaRHg==",
"type": "package",
"path": "microsoft.extensions.logging.abstractions/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"analyzers/dotnet/cs/Microsoft.Extensions.Logging.Generators.dll",
"analyzers/dotnet/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
"microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.logging.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
"sha512": "OiAS21Wg1X1qm4yE54PPJahF+nogKn5A+1UYcewvsASDcUudjllpCGMrqh5cI27pIst5VbFhq1KGTwzhU/GywA==",
"type": "package",
"path": "microsoft.extensions.options/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Options.dll",
"lib/net461/Microsoft.Extensions.Options.xml",
"lib/netstandard2.0/Microsoft.Extensions.Options.dll",
"lib/netstandard2.0/Microsoft.Extensions.Options.xml",
"lib/netstandard2.1/Microsoft.Extensions.Options.dll",
"lib/netstandard2.1/Microsoft.Extensions.Options.xml",
"microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.options.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
"sha512": "dbYTaKld3fbZETLzYknl5np8/rnas3isR3RQi0xvZNrz4S1bhn7lsEbu8ACwMAQxPxiKBgl59RKUNVmqjJ4Aww==",
"type": "package",
"path": "microsoft.extensions.primitives/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.Primitives.dll",
"lib/net461/Microsoft.Extensions.Primitives.xml",
"lib/net6.0/Microsoft.Extensions.Primitives.dll",
"lib/net6.0/Microsoft.Extensions.Primitives.xml",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
"microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
"microsoft.extensions.primitives.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Toolkit.Mvvm/7.1.0-rc1": {
"sha512": "J0LJvH2q/pUNfIB9ucC1K+hTrMyZj39sP61XhSvSV09leW32miCKSYmGb5Ad/PRPHTC3xoCFTLAhfeBeKTipIw==",
"type": "package",
"path": "microsoft.toolkit.mvvm/7.1.0-rc1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"License.md",
"analyzers/dotnet/cs/Microsoft.Toolkit.Mvvm.SourceGenerators.dll",
"analyzers/dotnet/cs/Microsoft.Toolkit.Mvvm.SourceGenerators.pdb",
"analyzers/dotnet/cs/Microsoft.Toolkit.Mvvm.SourceGenerators.xml",
"lib/net5.0/Microsoft.Toolkit.Mvvm.dll",
"lib/net5.0/Microsoft.Toolkit.Mvvm.pdb",
"lib/net5.0/Microsoft.Toolkit.Mvvm.xml",
"lib/netstandard2.0/Microsoft.Toolkit.Mvvm.dll",
"lib/netstandard2.0/Microsoft.Toolkit.Mvvm.pdb",
"lib/netstandard2.0/Microsoft.Toolkit.Mvvm.xml",
"lib/netstandard2.1/Microsoft.Toolkit.Mvvm.dll",
"lib/netstandard2.1/Microsoft.Toolkit.Mvvm.pdb",
"lib/netstandard2.1/Microsoft.Toolkit.Mvvm.xml",
"microsoft.toolkit.mvvm.7.1.0-rc1.nupkg.sha512",
"microsoft.toolkit.mvvm.nuspec"
]
},
"Npgsql/6.0.0-preview7": {
"sha512": "dOdWAo4aYu5RgEtbcXqKBHFp4s6TOSsUSwTC2rcsZd5quFS7geeUaXHnJlCxOYq2tNcFpTHNVFRlHB1OgKAw7w==",
"type": "package",
"path": "npgsql/6.0.0-preview7",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net5.0/Npgsql.dll",
"lib/net5.0/Npgsql.xml",
"lib/net6.0/Npgsql.dll",
"lib/net6.0/Npgsql.xml",
"lib/netcoreapp3.1/Npgsql.dll",
"lib/netcoreapp3.1/Npgsql.xml",
"lib/netstandard2.0/Npgsql.dll",
"lib/netstandard2.0/Npgsql.xml",
"lib/netstandard2.1/Npgsql.dll",
"lib/netstandard2.1/Npgsql.xml",
"npgsql.6.0.0-preview7.nupkg.sha512",
"npgsql.nuspec",
"postgresql.png"
]
},
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
"sha512": "nzDmkNImvzXtgQK8gN1C5F1eYUr9XSKGidWY+T0EjCeaKzuQnvg2Rac785/CtYsdC4/JWsgeI0oZaH1+Yb6JdQ==",
"type": "package",
"path": "npgsql.entityframeworkcore.postgresql/6.0.0-preview7",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
"npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
"npgsql.entityframeworkcore.postgresql.nuspec",
"postgresql.png"
]
},
"System.Buffers/4.5.1": {
"sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
"type": "package",
"path": "system.buffers/4.5.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Buffers.dll",
"lib/net461/System.Buffers.xml",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.1/System.Buffers.dll",
"lib/netstandard1.1/System.Buffers.xml",
"lib/netstandard2.0/System.Buffers.dll",
"lib/netstandard2.0/System.Buffers.xml",
"lib/uap10.0.16299/_._",
"ref/net45/System.Buffers.dll",
"ref/net45/System.Buffers.xml",
"ref/netcoreapp2.0/_._",
"ref/netstandard1.1/System.Buffers.dll",
"ref/netstandard1.1/System.Buffers.xml",
"ref/netstandard2.0/System.Buffers.dll",
"ref/netstandard2.0/System.Buffers.xml",
"ref/uap10.0.16299/_._",
"system.buffers.4.5.1.nupkg.sha512",
"system.buffers.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {
"sha512": "TnnzExYnPymCOxNLnOgpTl0GAnXtm3urz/XNnLxutN5uRFMT6TRaUpL2j8ADyXX4JkSJcyXOQ3GI9DLqBzRmIA==",
"type": "package",
"path": "system.collections.immutable/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Collections.Immutable.dll",
"lib/net461/System.Collections.Immutable.xml",
"lib/net6.0/System.Collections.Immutable.dll",
"lib/net6.0/System.Collections.Immutable.xml",
"lib/netstandard2.0/System.Collections.Immutable.dll",
"lib/netstandard2.0/System.Collections.Immutable.xml",
"system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.collections.immutable.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {
"sha512": "bnq8waIAuRZSU63bQQYzCTyfhqCSKTKWfy2oxBcVWh79d8WaiC4vtvyR0kAcF4YMrhK4YwjlXLblgfifXImPGw==",
"type": "package",
"path": "system.diagnostics.diagnosticsource/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Diagnostics.DiagnosticSource.dll",
"lib/net461/System.Diagnostics.DiagnosticSource.xml",
"lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
"lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
"lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
"lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
"lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
"lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
"system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.diagnostics.diagnosticsource.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Memory/4.5.4": {
"sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
"type": "package",
"path": "system.memory/4.5.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Memory.dll",
"lib/net461/System.Memory.xml",
"lib/netcoreapp2.1/_._",
"lib/netstandard1.1/System.Memory.dll",
"lib/netstandard1.1/System.Memory.xml",
"lib/netstandard2.0/System.Memory.dll",
"lib/netstandard2.0/System.Memory.xml",
"ref/netcoreapp2.1/_._",
"system.memory.4.5.4.nupkg.sha512",
"system.memory.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {
"sha512": "G9eKxgKE5UoyJdB4tpBFCWlgky34N11QDIjn92g6BwqII03yra4raegNNt3y3lmN6k+VDLIzgVMuddZ7LT6TEw==",
"type": "package",
"path": "system.runtime.compilerservices.unsafe/6.0.0-preview.7.21377.19",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
"ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
"ref/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
"ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
"system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512",
"system.runtime.compilerservices.unsafe.nuspec",
"useSharedDesignerContext.txt"
]
},
"DaSaSo.Domain/1.0.0": {
"type": "project",
"path": "../DaSaSo.Domain/DaSaSo.Domain.csproj",
"msbuildProject": "../DaSaSo.Domain/DaSaSo.Domain.csproj"
},
"DaSaSo.EntityFramework/1.0.0": {
"type": "project",
"path": "../DaSaSo.EntityFramework/DaSaSo.EntityFramework.csproj",
"msbuildProject": "../DaSaSo.EntityFramework/DaSaSo.EntityFramework.csproj"
},
"DaSaSo.ViewModel/1.0.0": {
"type": "project",
"path": "../DaSaSo.ViewModel/DaSaSo.ViewModel.csproj",
"msbuildProject": "../DaSaSo.ViewModel/DaSaSo.ViewModel.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0-windows7.0": [
"DaSaSo.Domain >= 1.0.0",
"DaSaSo.ViewModel >= 1.0.0"
]
},
"packageFolders": {
"C:\\Users\\KFZ\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\DaSaSo.Wpf.csproj",
"projectName": "DaSaSo.Wpf",
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\DaSaSo.Wpf.csproj",
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
},
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj": {
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.ViewModel\\DaSaSo.ViewModel.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,30 @@
{
"version": 2,
"dgSpecHash": "lYogehIOygJCORu/uWSXewjGTrGZPC6D5+m3qHlYEQwyz+Gm3Ii3wDihhlvxznJ/SyAHcmYhF+xBm5GKbPxvBg==",
"success": true,
"projectFilePath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Wpf\\DaSaSo.Wpf.csproj",
"expectedPackageFiles": [
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.options\\6.0.0-preview.7.21377.19\\microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0-preview.7.21377.19\\microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.toolkit.mvvm\\7.1.0-rc1\\microsoft.toolkit.mvvm.7.1.0-rc1.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\npgsql\\6.0.0-preview7\\npgsql.6.0.0-preview7.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\6.0.0-preview7\\npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.collections.immutable\\6.0.0-preview.7.21377.19\\system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0-preview.7.21377.19\\system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
"C:\\Users\\KFZ\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0-preview.7.21377.19\\system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512"
],
"logs": []
}

View File

@@ -3,9 +3,17 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.0.31612.314 VisualStudioVersion = 17.0.31612.314
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DaSaSo.Domain", "DaSaSo.Domain\DaSaSo.Domain.csproj", "{9434EB7A-C6EE-46C7-8306-BE806375E852}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DaSaSo.Domain", "DaSaSo.Domain\DaSaSo.Domain.csproj", "{9434EB7A-C6EE-46C7-8306-BE806375E852}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DaSaSo.EntityFramework", "DaSaSo.EntityFramework\DaSaSo.EntityFramework.csproj", "{E75F15AE-D49B-4768-A5EA-DC05AB60A898}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DaSaSo.EntityFramework", "DaSaSo.EntityFramework\DaSaSo.EntityFramework.csproj", "{E75F15AE-D49B-4768-A5EA-DC05AB60A898}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DaSaSo.ConsoleApp", "DaSaSo.ConsoleApp\DaSaSo.ConsoleApp.csproj", "{F4DE6BE1-860A-4088-96E2-D3852A52FE70}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DaSaSo.Wpf", "DaSaSo.Wpf\DaSaSo.Wpf.csproj", "{0B11DE2B-BBAB-465E-B9D4-9E02B804A9CC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DaSaSo.ViewModel", "DaSaSo.ViewModel\DaSaSo.ViewModel.csproj", "{7CC8889C-87AD-4E32-B9AB-C4B322828797}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DaSaSo.InMemoryProvider", "DaSaSo.InMemoryProvider\DaSaSo.InMemoryProvider.csproj", "{838B8397-FF4A-4E61-A6A8-B3F8D00D120D}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -21,6 +29,22 @@ Global
{E75F15AE-D49B-4768-A5EA-DC05AB60A898}.Debug|Any CPU.Build.0 = Debug|Any CPU {E75F15AE-D49B-4768-A5EA-DC05AB60A898}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E75F15AE-D49B-4768-A5EA-DC05AB60A898}.Release|Any CPU.ActiveCfg = Release|Any CPU {E75F15AE-D49B-4768-A5EA-DC05AB60A898}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E75F15AE-D49B-4768-A5EA-DC05AB60A898}.Release|Any CPU.Build.0 = Release|Any CPU {E75F15AE-D49B-4768-A5EA-DC05AB60A898}.Release|Any CPU.Build.0 = Release|Any CPU
{F4DE6BE1-860A-4088-96E2-D3852A52FE70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F4DE6BE1-860A-4088-96E2-D3852A52FE70}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F4DE6BE1-860A-4088-96E2-D3852A52FE70}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F4DE6BE1-860A-4088-96E2-D3852A52FE70}.Release|Any CPU.Build.0 = Release|Any CPU
{0B11DE2B-BBAB-465E-B9D4-9E02B804A9CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0B11DE2B-BBAB-465E-B9D4-9E02B804A9CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0B11DE2B-BBAB-465E-B9D4-9E02B804A9CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0B11DE2B-BBAB-465E-B9D4-9E02B804A9CC}.Release|Any CPU.Build.0 = Release|Any CPU
{7CC8889C-87AD-4E32-B9AB-C4B322828797}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7CC8889C-87AD-4E32-B9AB-C4B322828797}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7CC8889C-87AD-4E32-B9AB-C4B322828797}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7CC8889C-87AD-4E32-B9AB-C4B322828797}.Release|Any CPU.Build.0 = Release|Any CPU
{838B8397-FF4A-4E61-A6A8-B3F8D00D120D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{838B8397-FF4A-4E61-A6A8-B3F8D00D120D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{838B8397-FF4A-4E61-A6A8-B3F8D00D120D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{838B8397-FF4A-4E61-A6A8-B3F8D00D120D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE