refacto name spaces

This commit is contained in:
Paul Schneider 2026-07-05 17:22:57 +01:00
commit 94eb8e2fff
108 changed files with 1839 additions and 282 deletions

View file

@ -6,13 +6,13 @@ using System.Net.Http;
using System.Threading.Tasks;
using Newtonsoft.Json;
using isn.Abstract;
using Isn.Abstract;
using System.Linq;
using Xunit;
using isn.abst;
using Isn.@abstract;
using isnd.Entities;
namespace isn.tests
namespace Isn.tests
{
public class Tests
{
@ -21,7 +21,7 @@ namespace isn.tests
public void HaveADefaultDataProtector()
{
string pass = "a lame and big pass";
isn.IDataProtector _protector = new isn.DefaultDataProtector();
Isn.IDataProtector _protector = new Isn.DefaultDataProtector();
string protectedpass = _protector.Protect(pass);
string unprotectedpass = _protector.UnProtect(protectedpass);
Console.WriteLine(protectedpass);