Add project files.

This commit is contained in:
2025-07-06 17:36:00 +02:00
parent 57be803688
commit 9e7a75b8c3
17 changed files with 426 additions and 0 deletions

View File

@ -0,0 +1,9 @@
namespace WpfLibrary;
public class DataAccess : IDataAccess
{
public string GetData()
{
return "This is the data from the Data Access class!";
}
}

View File

@ -0,0 +1,7 @@
namespace WpfLibrary
{
public interface IDataAccess
{
string GetData();
}
}

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>