From 3ee6e09d8ef393bd566e29fa81baba388244883f Mon Sep 17 00:00:00 2001 From: mathieusteen Date: Thu, 17 Dec 2020 17:18:41 +0100 Subject: [PATCH 1/3] added sollicitatie repo ect --- .vs/AlfaPrentice/v16/.suo | Bin 61952 -> 61952 bytes AlfaPrentice/Controllers/BedrijfController.cs | 56 ++++++++---------- .../Controllers/SollicitatieController.cs | 49 +++++++++++++++ .../Interfaces/IBedrijfRepository.cs | 4 +- .../Interfaces/ISollicitatieRepository.cs | 15 +++++ .../implementaties/BedrijfRepository.cs | 25 ++++++++ .../implementaties/SollicitatieRepository.cs | 39 ++++++++++++ AlfaPrentice/Startup.cs | 2 + ...AlfaPrentice.csprojAssemblyReference.cache | Bin 25832 -> 25832 bytes 9 files changed, 157 insertions(+), 33 deletions(-) create mode 100644 AlfaPrentice/Controllers/SollicitatieController.cs create mode 100644 AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs create mode 100644 AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs diff --git a/.vs/AlfaPrentice/v16/.suo b/.vs/AlfaPrentice/v16/.suo index ea0cf8d8c34fc0b23efeec88664171de0fe45403..900fef7b081522424f3a06b42adbf14540f1616f 100644 GIT binary patch delta 623 zcmZp8!rbtLc|#5p+k=_kx3yfET*TJIcz^R(CT>PXp~;La;u#7I3=IGN|Nk!lq&a{% z9f(EsGWpUEzc2CVOZ zl20c8)IHB(hN4XG0uM-!0g@p1QXuCN5Cg&F|E32gH(2#4RPvwVIqCUz-;(JjBX) z)8q^02Ad>uIB|JJ(SwILPi+3F&(1bU?*y41xg@Gn?->-N|37W=BMJHNlR9r~j=X7E U)4AR9^XE+7Df&ctWRcYl0M6h0dH?_b delta 464 zcmZp8!rbtLc|#5pn}Gb>$iwF+7cm9#$T2W5umJIYAehXkt-^S1^H(NrMn;awj4a}s zMnIW=Kp7q=tpKD!s(FD}8Hlxj7^L(6;M6v*yaX~8%&c~1Z^fy;TGY24HS6;#BYK4-{!5{ z-b|ak4m0vHG6MP9KnyYg6c(&vK+g2dKl$02CaJmbfP_H-0h8WbqSnJWNy~ZiVJ1U1 zW1wagCZI0o$p%d9lU=m;Ocu~K0kQ>vY@1Dd9*mPcgmfmC@b_$z$l(M!MFX2t6uo&S wiJaJc!o`AdkpbHzu>%5k4u GetBedrijf(int Bedrijf_ID) + [HttpGet] + public IEnumerable GetBedrijf() { - var bedrijf =bedrijfRepo.GetBedrijf(Bedrijf_ID); + var bedrijven =bedrijfRepo.GetBedrijven(); + return bedrijven; + + } + + //get bedrijf by ID + [HttpGet("{Bedrijf_ID}")] + public Bedrijf GetBedrijf(int Bedrijf_ID) + { + var bedrijf = bedrijfRepo.GetBedrijf(Bedrijf_ID); return bedrijf; - } -/* //getbedrijf - [HttpGet("{Bedrijf_ID}")] - public async Task> GetBedrijf(int Bedrijf_ID) + //add geheel bedrijf + [HttpPost] + public void AddBedrijf([FromBody] Bedrijf bedrijf) { - return await _context.Bedrijf.Where(B => B.Bedrijf_ID == Bedrijf_ID).ToListAsync(); - // return getBedrijf; - }*/ + bedrijfRepo.AddBedrijf(bedrijf); + } - // GET: api/ - /* [HttpGet] - public IEnumerable Get() - { - return new string[] { "value1", "value2" }; - } - - // GET api//5 - [HttpGet("{id}")] - public string Get(int id) - { - return "value"; - } - - // POST api/ - [HttpPost] - public void Post([FromBody] string value) - { - }*/ + //update een volledig bedrijf + [HttpPost] + public void UpdateBedrijf([FromBody] Bedrijf bedrijf) + { + bedrijfRepo.UpdateBedrijf(bedrijf); + } } } diff --git a/AlfaPrentice/Controllers/SollicitatieController.cs b/AlfaPrentice/Controllers/SollicitatieController.cs new file mode 100644 index 0000000..1f834f7 --- /dev/null +++ b/AlfaPrentice/Controllers/SollicitatieController.cs @@ -0,0 +1,49 @@ +using AlfaPrentice.Data; +using AlfaPrentice.Models; +using AlfaPrentice.Repositorys.Interfaces; +using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 + +namespace AlfaPrentice.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class SollicitatieController : ControllerBase + { + //constructor + public ISollicitatieRepository sollicitatieRepo; + public SollicitatieController(ISollicitatieRepository sollicitatieRepo) + { + this.sollicitatieRepo = sollicitatieRepo; + } + + //get list sollicitaties + [HttpGet] + public IEnumerable GetSollicitaties() + { + var sollicitaties = sollicitatieRepo.GetSollicitaties(); + return sollicitaties; + } + + //get sollicitatie by student_ID + [HttpGet("{Student_ID}")] + public Sollicitatie GetSollicitatie(int Student_ID) + { + var sollicitatie = sollicitatieRepo.GetSollicitatie(Student_ID); + return sollicitatie; + } + + // POST api/ + [HttpPost] + public void Post([FromBody] Sollicitatie sollicitatie) + { + sollicitatieRepo.AddSollicitatie(sollicitatie); + } + + } +} diff --git a/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs b/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs index b572025..044b7cf 100644 --- a/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs +++ b/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs @@ -8,7 +8,9 @@ namespace AlfaPrentice.Repositorys.Interfaces { public interface IBedrijfRepository { + List GetBedrijven(); Bedrijf GetBedrijf(int Bedrijf_ID); - //drijf GetBedrijf(int Bedrijf_ID); + Bedrijf AddBedrijf(Bedrijf bedrijf); + Bedrijf UpdateBedrijf(Bedrijf bedrijf); } } diff --git a/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs b/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs new file mode 100644 index 0000000..79cff41 --- /dev/null +++ b/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs @@ -0,0 +1,15 @@ +using AlfaPrentice.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace AlfaPrentice.Repositorys.Interfaces +{ + public interface ISollicitatieRepository + { + List GetSollicitaties(); + Sollicitatie GetSollicitatie(int Student_ID); + Sollicitatie AddSollicitatie(Sollicitatie Sollicitatie); + } +} diff --git a/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs b/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs index 1109b01..aa75627 100644 --- a/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs +++ b/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs @@ -16,10 +16,35 @@ namespace AlfaPrentice.Repositorys.implementaties this.db = db; } + //get list of bedrijfven + public List GetBedrijven() + { + return db.Bedrijf.ToList(); + } + + //get bedrijf by ID public Bedrijf GetBedrijf(int Bedrijf_ID) { return db.Bedrijf.Where(B => B.Bedrijf_ID == Bedrijf_ID).FirstOrDefault(); } + + //add geheel bedrijf + public Bedrijf AddBedrijf(Bedrijf bedrijf) + { + db.Bedrijf.Add(bedrijf); + db.SaveChanges(); + + return bedrijf; + } + + //update a complete bedrijf + public Bedrijf UpdateBedrijf(Bedrijf bedrijf) + { + db.Bedrijf.Update(bedrijf); + db.SaveChanges(); + + return bedrijf; + } } } diff --git a/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs b/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs new file mode 100644 index 0000000..7f04071 --- /dev/null +++ b/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs @@ -0,0 +1,39 @@ +using AlfaPrentice.Data; +using AlfaPrentice.Models; +using AlfaPrentice.Repositorys.Interfaces; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace AlfaPrentice.Repositorys.implementaties +{ + public class SollicitatieRepository : ISollicitatieRepository + { + AlfaPrenticeContext db; + public SollicitatieRepository(AlfaPrenticeContext db) + { + this.db = db; + } + //get list of sollicitaties + public List GetSollicitaties() + { + return db.Sollicitatie.ToList(); + } + + //get sollicitatie by Student_ID + public Sollicitatie GetSollicitatie(int Student_ID) + { + return db.Sollicitatie.Where(S => S.Student_ID == Student_ID).FirstOrDefault(); + } + + //Add complete sollicitatie + public Sollicitatie AddSollicitatie(Sollicitatie sollicitatie) + { + db.Sollicitatie.Add(sollicitatie); + db.SaveChanges(); + + return null; + } + } +} diff --git a/AlfaPrentice/Startup.cs b/AlfaPrentice/Startup.cs index e8b3832..d924e64 100644 --- a/AlfaPrentice/Startup.cs +++ b/AlfaPrentice/Startup.cs @@ -33,7 +33,9 @@ namespace AlfaPrentice services.Configure(Configuration); services.AddDbContext(options => options.UseMySQL(Configuration.GetConnectionString("AlfaPrentice"))); + //depencies for interface and repos services.AddTransient(); + services.AddTransient(); services.AddControllers(); services.AddSwaggerGen(c => diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache index 7f588b90f9ec83a858645767b423ff89e959a416..4641ed7d7ad72f9976ebc81de39c45274dfb51d4 100644 GIT binary patch delta 17 ZcmaEHlJUh!#tr_AOf}-00~x0$0{}=32KfL0 delta 17 ZcmaEHlJUh!#tr_AOfEv30~x0$0{}*62D|_O From 3cfa6713a7b4504948979b361bba72a221d76dad Mon Sep 17 00:00:00 2001 From: mathieusteen Date: Fri, 18 Dec 2020 12:58:49 +0100 Subject: [PATCH 2/3] added repos plus file sturucture changes --- AlfaPrentice.sln => .net/AlfaPrentice.sln | 0 .../AlfaPrentice/DesignTimeBuild/.dtbcache.v2 | Bin .../AlfaPrentice}/.vs/AlfaPrentice/v16/.suo | Bin .../AlfaPrentice}/.vs/VSWorkspaceState.json | 0 .../AlfaPrentice}/.vs/slnx.sqlite | Bin .../AlfaPrentice}/AlfaPrentice.csproj | 0 .../AlfaPrentice}/AlfaPrentice.csproj.user | 0 .../Controllers/BedrijfController.cs | 0 .../Controllers/SollicitatieController.cs | 0 .../Controllers/WeatherForecastController.cs | 0 .../AlfaPrentice}/Data/AlfaPrenticeContext.cs | 1 + .../AlfaPrentice}/Dockerfile | 0 .../AlfaPrentice}/Models/Adres.cs | 0 .../AlfaPrentice}/Models/Afspraak.cs | 0 .../AlfaPrentice}/Models/Agenda.cs | 0 .../AlfaPrentice}/Models/AgendaBlok.cs | 0 .../AlfaPrentice}/Models/AppSettings.cs | 0 .../AlfaPrentice}/Models/BPVDocent.cs | 0 .../AlfaPrentice}/Models/Bedrijf.cs | 0 .../AlfaPrentice}/Models/Bericht.cs | 0 .net/AlfaPrentice/Models/Deelnemer.cs | 19 +++ .../AlfaPrentice}/Models/Docent.cs | 2 +- .../AlfaPrentice}/Models/Document.cs | 0 .../AlfaPrentice}/Models/Eisen.cs | 0 .../AlfaPrentice}/Models/Evaluatie.cs | 0 .../AlfaPrentice}/Models/Gebruiker.cs | 0 .../AlfaPrentice}/Models/Klas.cs | 0 .../AlfaPrentice}/Models/Mentor.cs | 0 .../AlfaPrentice}/Models/Opleiding.cs | 0 .../AlfaPrentice}/Models/POK.cs | 0 .../Models/Praktijkbegeleider.cs | 2 +- .../AlfaPrentice}/Models/Session.cs | 0 .../AlfaPrentice}/Models/Sollicitatie.cs | 0 .../AlfaPrentice}/Models/StagePlek.cs | 0 .../AlfaPrentice}/Models/Stagecoordinator.cs | 0 .../AlfaPrentice}/Models/Student.cs | 2 +- .../AlfaPrentice}/Models/Traject.cs | 0 .../AlfaPrentice}/Models/Weekstaten.cs | 0 .../AlfaPrentice}/Program.cs | 0 .../Properties/launchSettings.json | 0 .../Interfaces/IAfspraakRepository.cs | 11 ++ .../Interfaces/IAgendaRepository.cs | 18 +++ .../Interfaces/IBedrijfRepository.cs | 0 .../Interfaces/ISollicitatieRepository.cs | 0 .../implementaties/AfspraakRepository.cs | 133 ++++++++++++++++++ .../implementaties/AgendaRepository.cs | 115 +++++++++++++++ .../implementaties/BedrijfRepository.cs | 0 .../implementaties/SollicitatieRepository.cs | 2 +- .../AlfaPrentice}/Startup.cs | 2 + .../AlfaPrentice}/WeatherForecast.cs | 0 .../appsettings.Development.json | 0 .../AlfaPrentice}/appsettings.json | 0 .../bin/Debug/net5.0/AlfaPrentice.deps.json | 0 .../bin/Debug/net5.0/AlfaPrentice.dll | Bin .../bin/Debug/net5.0/AlfaPrentice.exe | Bin .../bin/Debug/net5.0/AlfaPrentice.pdb | Bin .../AlfaPrentice.runtimeconfig.dev.json | 0 .../net5.0/AlfaPrentice.runtimeconfig.json | 0 .../bin/Debug/net5.0/BouncyCastle.Crypto.dll | Bin .../bin/Debug/net5.0/Google.Protobuf.dll | Bin .../net5.0/K4os.Compression.LZ4.Streams.dll | Bin .../bin/Debug/net5.0/K4os.Compression.LZ4.dll | Bin .../bin/Debug/net5.0/K4os.Hash.xxHash.dll | Bin ...ft.AspNetCore.Authentication.JwtBearer.dll | Bin ...spNetCore.Authentication.OpenIdConnect.dll | Bin .../Microsoft.AspNetCore.Razor.Language.dll | Bin .../net5.0/Microsoft.Bcl.AsyncInterfaces.dll | Bin .../Debug/net5.0/Microsoft.Bcl.HashCode.dll | Bin ...crosoft.CodeAnalysis.CSharp.Workspaces.dll | Bin .../net5.0/Microsoft.CodeAnalysis.CSharp.dll | Bin .../net5.0/Microsoft.CodeAnalysis.Razor.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.dll | Bin .../Debug/net5.0/Microsoft.CodeAnalysis.dll | Bin ...osoft.EntityFrameworkCore.Abstractions.dll | Bin .../Microsoft.EntityFrameworkCore.Design.dll | Bin ...crosoft.EntityFrameworkCore.Relational.dll | Bin .../net5.0/Microsoft.EntityFrameworkCore.dll | Bin .../Microsoft.IdentityModel.JsonWebTokens.dll | Bin .../Microsoft.IdentityModel.Logging.dll | Bin ....IdentityModel.Protocols.OpenIdConnect.dll | Bin .../Microsoft.IdentityModel.Protocols.dll | Bin .../net5.0/Microsoft.IdentityModel.Tokens.dll | Bin .../bin/Debug/net5.0/Microsoft.OpenApi.dll | Bin ...ualStudio.Web.CodeGeneration.Contracts.dll | Bin ...t.VisualStudio.Web.CodeGeneration.Core.dll | Bin ...Web.CodeGeneration.EntityFrameworkCore.dll | Bin ...alStudio.Web.CodeGeneration.Templating.dll | Bin ....VisualStudio.Web.CodeGeneration.Utils.dll | Bin ...rosoft.VisualStudio.Web.CodeGeneration.dll | Bin ...ft.VisualStudio.Web.CodeGenerators.Mvc.dll | Bin .../net5.0/MySql.Data.EntityFrameworkCore.dll | Bin .../bin/Debug/net5.0/MySql.Data.dll | Bin .../bin/Debug/net5.0/Newtonsoft.Json.dll | Bin .../bin/Debug/net5.0/NuGet.Frameworks.dll | Bin .../bin/Debug/net5.0/Renci.SshNet.dll | Bin .../net5.0/SshNet.Security.Cryptography.dll | Bin .../net5.0/Swashbuckle.AspNetCore.Swagger.dll | Bin .../Swashbuckle.AspNetCore.SwaggerGen.dll | Bin .../Swashbuckle.AspNetCore.SwaggerUI.dll | Bin .../System.Composition.AttributedModel.dll | Bin .../net5.0/System.Composition.Convention.dll | Bin .../net5.0/System.Composition.Hosting.dll | Bin .../net5.0/System.Composition.Runtime.dll | Bin .../net5.0/System.Composition.TypedParts.dll | Bin ...tem.Configuration.ConfigurationManager.dll | Bin .../System.IdentityModel.Tokens.Jwt.dll | Bin ...em.Security.Cryptography.ProtectedData.dll | Bin .../net5.0/System.Xml.XPath.XmlDocument.dll | Bin .../bin/Debug/net5.0/Ubiety.Dns.Core.dll | Bin .../bin/Debug/net5.0/Zstandard.Net.dll | Bin .../Debug/net5.0/appsettings.Development.json | 0 .../bin/Debug/net5.0/appsettings.json | 0 ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../cs/Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../de/Microsoft.CodeAnalysis.resources.dll | Bin .../dotnet-aspnet-codegenerator-design.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../es/Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../fr/Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../it/Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../ja/Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../ko/Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../pl/Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../Microsoft.CodeAnalysis.resources.dll | Bin .../bin/Debug/net5.0/ref/AlfaPrentice.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../ru/Microsoft.CodeAnalysis.resources.dll | Bin ...em.Security.Cryptography.ProtectedData.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../tr/Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../Microsoft.CodeAnalysis.resources.dll | Bin ...deAnalysis.CSharp.Workspaces.resources.dll | Bin ...icrosoft.CodeAnalysis.CSharp.resources.dll | Bin ...soft.CodeAnalysis.Workspaces.resources.dll | Bin .../Microsoft.CodeAnalysis.resources.dll | Bin .../netcoreapp3.1/AlfaPrentice.deps.json | 0 .../bin/Debug/netcoreapp3.1/AlfaPrentice.dll | Bin .../bin/Debug/netcoreapp3.1/AlfaPrentice.exe | Bin .../bin/Debug/netcoreapp3.1/AlfaPrentice.pdb | Bin .../AlfaPrentice.runtimeconfig.dev.json | 0 .../AlfaPrentice.runtimeconfig.json | 0 .../Microsoft.DotNet.PlatformAbstractions.dll | Bin ...osoft.EntityFrameworkCore.Abstractions.dll | Bin ...crosoft.EntityFrameworkCore.Relational.dll | Bin .../Microsoft.EntityFrameworkCore.dll | Bin ...rosoft.Extensions.Caching.Abstractions.dll | Bin .../Microsoft.Extensions.Caching.Memory.dll | Bin ...sions.DependencyInjection.Abstractions.dll | Bin ...crosoft.Extensions.DependencyInjection.dll | Bin .../Microsoft.Extensions.DependencyModel.dll | Bin ...rosoft.Extensions.Logging.Abstractions.dll | Bin .../Microsoft.Extensions.Logging.Debug.dll | Bin .../Microsoft.Extensions.Logging.dll | Bin .../Microsoft.Extensions.Options.dll | Bin .../Microsoft.Extensions.Primitives.dll | Bin .../Debug/netcoreapp3.1/MySqlConnector.dll | Bin .../Debug/netcoreapp3.1/Newtonsoft.Json.dll | Bin .../Pomelo.EntityFrameworkCore.MySql.dll | Bin .../Debug/netcoreapp3.1/Pomelo.JsonObject.dll | Bin .../Properties/launchSettings.json | 0 .../System.Collections.Immutable.dll | Bin .../System.ComponentModel.Annotations.dll | Bin .../System.Diagnostics.DiagnosticSource.dll | Bin .../appsettings.Development.json | 0 .../bin/Debug/netcoreapp3.1/appsettings.json | 0 .../obj/AlfaPrentice.csproj.nuget.dgspec.json | 0 .../obj/AlfaPrentice.csproj.nuget.g.props | 0 .../obj/AlfaPrentice.csproj.nuget.g.targets | 0 ...CoreApp,Version=v5.0.AssemblyAttributes.cs | 0 .../Debug/net5.0/AlfaPrentice.AssemblyInfo.cs | 0 .../AlfaPrentice.AssemblyInfoInputs.cache | 0 ....GeneratedMSBuildEditorConfig.editorconfig | 0 ...tice.MvcApplicationPartsAssemblyInfo.cache | 0 ...rentice.MvcApplicationPartsAssemblyInfo.cs | 0 ...AlfaPrentice.RazorTargetAssemblyInfo.cache | 0 .../Debug/net5.0/AlfaPrentice.assets.cache | Bin .../net5.0/AlfaPrentice.csproj.CopyComplete | 0 ...lfaPrentice.csproj.CoreCompileInputs.cache | 0 .../AlfaPrentice.csproj.FileListAbsolute.txt | 0 ...AlfaPrentice.csprojAssemblyReference.cache | Bin 0 -> 277091 bytes .../obj/Debug/net5.0/AlfaPrentice.dll | Bin .../AlfaPrentice.genruntimeconfig.cache | 0 .../obj/Debug/net5.0/AlfaPrentice.pdb | Bin .../obj/Debug/net5.0/apphost.exe | Bin .../obj/Debug/net5.0/ref/AlfaPrentice.dll | Bin ...lfaPrentice.StaticWebAssets.Manifest.cache | 0 .../AlfaPrentice.StaticWebAssets.xml | 0 ...CoreApp,Version=v3.1.AssemblyAttributes.cs | 0 .../AlfaPrentice.AssemblyInfo.cs | 0 .../AlfaPrentice.AssemblyInfoInputs.cache | 0 ...tice.MvcApplicationPartsAssemblyInfo.cache | 0 ...AlfaPrentice.RazorTargetAssemblyInfo.cache | 0 .../netcoreapp3.1/AlfaPrentice.assets.cache | Bin .../AlfaPrentice.csproj.CopyComplete | 0 ...lfaPrentice.csproj.CoreCompileInputs.cache | 0 .../AlfaPrentice.csproj.FileListAbsolute.txt | 0 ...AlfaPrentice.csprojAssemblyReference.cache | Bin .../obj/Debug/netcoreapp3.1/AlfaPrentice.dll | Bin .../obj/Debug/netcoreapp3.1/AlfaPrentice.exe | Bin .../AlfaPrentice.genruntimeconfig.cache | 0 .../obj/Debug/netcoreapp3.1/AlfaPrentice.pdb | Bin .../obj/Debug/netcoreapp3.1/apphost.exe | Bin ...lfaPrentice.StaticWebAssets.Manifest.cache | 0 .../AlfaPrentice.StaticWebAssets.xml | 0 ...CoreApp,Version=v3.1.AssemblyAttributes.cs | 0 .../AlfaPrentice.AssemblyInfo.cs | 0 .../AlfaPrentice.AssemblyInfoInputs.cache | 0 .../netcoreapp3.1/AlfaPrentice.assets.cache | Bin ...AlfaPrentice.csprojAssemblyReference.cache | Bin .../AlfaPrentice}/obj/project.assets.json | 0 .../AlfaPrentice}/obj/project.nuget.cache | 0 .vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 | Bin 135916 -> 141136 bytes .vs/AlfaPrentice/v16/.suo | Bin 61952 -> 65024 bytes ...AlfaPrentice.csprojAssemblyReference.cache | Bin 25832 -> 0 bytes 246 files changed, 303 insertions(+), 4 deletions(-) rename AlfaPrentice.sln => .net/AlfaPrentice.sln (100%) rename {AlfaPrentice => .net/AlfaPrentice}/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 (100%) rename {AlfaPrentice => .net/AlfaPrentice}/.vs/AlfaPrentice/v16/.suo (100%) rename {AlfaPrentice => .net/AlfaPrentice}/.vs/VSWorkspaceState.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/.vs/slnx.sqlite (100%) rename {AlfaPrentice => .net/AlfaPrentice}/AlfaPrentice.csproj (100%) rename {AlfaPrentice => .net/AlfaPrentice}/AlfaPrentice.csproj.user (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Controllers/BedrijfController.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Controllers/SollicitatieController.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Controllers/WeatherForecastController.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Data/AlfaPrenticeContext.cs (97%) rename {AlfaPrentice => .net/AlfaPrentice}/Dockerfile (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Adres.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Afspraak.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Agenda.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/AgendaBlok.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/AppSettings.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/BPVDocent.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Bedrijf.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Bericht.cs (100%) create mode 100644 .net/AlfaPrentice/Models/Deelnemer.cs rename {AlfaPrentice => .net/AlfaPrentice}/Models/Docent.cs (90%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Document.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Eisen.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Evaluatie.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Gebruiker.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Klas.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Mentor.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Opleiding.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/POK.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Praktijkbegeleider.cs (89%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Session.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Sollicitatie.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/StagePlek.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Stagecoordinator.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Student.cs (94%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Traject.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Models/Weekstaten.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Program.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Properties/launchSettings.json (100%) create mode 100644 .net/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs create mode 100644 .net/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs rename {AlfaPrentice => .net/AlfaPrentice}/Repositorys/Interfaces/IBedrijfRepository.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Repositorys/Interfaces/ISollicitatieRepository.cs (100%) create mode 100644 .net/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs create mode 100644 .net/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs rename {AlfaPrentice => .net/AlfaPrentice}/Repositorys/implementaties/BedrijfRepository.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/Repositorys/implementaties/SollicitatieRepository.cs (96%) rename {AlfaPrentice => .net/AlfaPrentice}/Startup.cs (93%) rename {AlfaPrentice => .net/AlfaPrentice}/WeatherForecast.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/appsettings.Development.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/appsettings.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/AlfaPrentice.deps.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/AlfaPrentice.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/AlfaPrentice.exe (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/AlfaPrentice.pdb (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/BouncyCastle.Crypto.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Google.Protobuf.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/K4os.Compression.LZ4.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/K4os.Hash.xxHash.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.OpenApi.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/MySql.Data.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Newtonsoft.Json.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/NuGet.Frameworks.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Renci.SshNet.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/SshNet.Security.Cryptography.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.Composition.AttributedModel.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.Composition.Convention.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.Composition.Hosting.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.Composition.Runtime.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.Composition.TypedParts.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Ubiety.Dns.Core.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/Zstandard.Net.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/appsettings.Development.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/appsettings.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ref/AlfaPrentice.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/AlfaPrentice.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/AlfaPrentice.exe (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/MySqlConnector.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/Properties/launchSettings.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/appsettings.Development.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/bin/Debug/netcoreapp3.1/appsettings.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/AlfaPrentice.csproj.nuget.dgspec.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/AlfaPrentice.csproj.nuget.g.props (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/AlfaPrentice.csproj.nuget.g.targets (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.assets.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt (100%) create mode 100644 .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/AlfaPrentice.pdb (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/apphost.exe (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/ref/AlfaPrentice.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.dll (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.exe (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/apphost.exe (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/project.assets.json (100%) rename {AlfaPrentice => .net/AlfaPrentice}/obj/project.nuget.cache (100%) delete mode 100644 AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache diff --git a/AlfaPrentice.sln b/.net/AlfaPrentice.sln similarity index 100% rename from AlfaPrentice.sln rename to .net/AlfaPrentice.sln diff --git a/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 b/.net/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 similarity index 100% rename from AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 rename to .net/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 diff --git a/AlfaPrentice/.vs/AlfaPrentice/v16/.suo b/.net/AlfaPrentice/.vs/AlfaPrentice/v16/.suo similarity index 100% rename from AlfaPrentice/.vs/AlfaPrentice/v16/.suo rename to .net/AlfaPrentice/.vs/AlfaPrentice/v16/.suo diff --git a/AlfaPrentice/.vs/VSWorkspaceState.json b/.net/AlfaPrentice/.vs/VSWorkspaceState.json similarity index 100% rename from AlfaPrentice/.vs/VSWorkspaceState.json rename to .net/AlfaPrentice/.vs/VSWorkspaceState.json diff --git a/AlfaPrentice/.vs/slnx.sqlite b/.net/AlfaPrentice/.vs/slnx.sqlite similarity index 100% rename from AlfaPrentice/.vs/slnx.sqlite rename to .net/AlfaPrentice/.vs/slnx.sqlite diff --git a/AlfaPrentice/AlfaPrentice.csproj b/.net/AlfaPrentice/AlfaPrentice.csproj similarity index 100% rename from AlfaPrentice/AlfaPrentice.csproj rename to .net/AlfaPrentice/AlfaPrentice.csproj diff --git a/AlfaPrentice/AlfaPrentice.csproj.user b/.net/AlfaPrentice/AlfaPrentice.csproj.user similarity index 100% rename from AlfaPrentice/AlfaPrentice.csproj.user rename to .net/AlfaPrentice/AlfaPrentice.csproj.user diff --git a/AlfaPrentice/Controllers/BedrijfController.cs b/.net/AlfaPrentice/Controllers/BedrijfController.cs similarity index 100% rename from AlfaPrentice/Controllers/BedrijfController.cs rename to .net/AlfaPrentice/Controllers/BedrijfController.cs diff --git a/AlfaPrentice/Controllers/SollicitatieController.cs b/.net/AlfaPrentice/Controllers/SollicitatieController.cs similarity index 100% rename from AlfaPrentice/Controllers/SollicitatieController.cs rename to .net/AlfaPrentice/Controllers/SollicitatieController.cs diff --git a/AlfaPrentice/Controllers/WeatherForecastController.cs b/.net/AlfaPrentice/Controllers/WeatherForecastController.cs similarity index 100% rename from AlfaPrentice/Controllers/WeatherForecastController.cs rename to .net/AlfaPrentice/Controllers/WeatherForecastController.cs diff --git a/AlfaPrentice/Data/AlfaPrenticeContext.cs b/.net/AlfaPrentice/Data/AlfaPrenticeContext.cs similarity index 97% rename from AlfaPrentice/Data/AlfaPrenticeContext.cs rename to .net/AlfaPrentice/Data/AlfaPrenticeContext.cs index 3301dc1..489a7f7 100644 --- a/AlfaPrentice/Data/AlfaPrenticeContext.cs +++ b/.net/AlfaPrentice/Data/AlfaPrenticeContext.cs @@ -33,6 +33,7 @@ namespace AlfaPrentice.Data public DbSet Agenda { get; set; } public DbSet Afspraak { get; set; } public DbSet AgendaBlock { get; set; } + public DbSet Deelnemer { get; set; } //School tabellen public DbSet Opleiding { get; set; } diff --git a/AlfaPrentice/Dockerfile b/.net/AlfaPrentice/Dockerfile similarity index 100% rename from AlfaPrentice/Dockerfile rename to .net/AlfaPrentice/Dockerfile diff --git a/AlfaPrentice/Models/Adres.cs b/.net/AlfaPrentice/Models/Adres.cs similarity index 100% rename from AlfaPrentice/Models/Adres.cs rename to .net/AlfaPrentice/Models/Adres.cs diff --git a/AlfaPrentice/Models/Afspraak.cs b/.net/AlfaPrentice/Models/Afspraak.cs similarity index 100% rename from AlfaPrentice/Models/Afspraak.cs rename to .net/AlfaPrentice/Models/Afspraak.cs diff --git a/AlfaPrentice/Models/Agenda.cs b/.net/AlfaPrentice/Models/Agenda.cs similarity index 100% rename from AlfaPrentice/Models/Agenda.cs rename to .net/AlfaPrentice/Models/Agenda.cs diff --git a/AlfaPrentice/Models/AgendaBlok.cs b/.net/AlfaPrentice/Models/AgendaBlok.cs similarity index 100% rename from AlfaPrentice/Models/AgendaBlok.cs rename to .net/AlfaPrentice/Models/AgendaBlok.cs diff --git a/AlfaPrentice/Models/AppSettings.cs b/.net/AlfaPrentice/Models/AppSettings.cs similarity index 100% rename from AlfaPrentice/Models/AppSettings.cs rename to .net/AlfaPrentice/Models/AppSettings.cs diff --git a/AlfaPrentice/Models/BPVDocent.cs b/.net/AlfaPrentice/Models/BPVDocent.cs similarity index 100% rename from AlfaPrentice/Models/BPVDocent.cs rename to .net/AlfaPrentice/Models/BPVDocent.cs diff --git a/AlfaPrentice/Models/Bedrijf.cs b/.net/AlfaPrentice/Models/Bedrijf.cs similarity index 100% rename from AlfaPrentice/Models/Bedrijf.cs rename to .net/AlfaPrentice/Models/Bedrijf.cs diff --git a/AlfaPrentice/Models/Bericht.cs b/.net/AlfaPrentice/Models/Bericht.cs similarity index 100% rename from AlfaPrentice/Models/Bericht.cs rename to .net/AlfaPrentice/Models/Bericht.cs diff --git a/.net/AlfaPrentice/Models/Deelnemer.cs b/.net/AlfaPrentice/Models/Deelnemer.cs new file mode 100644 index 0000000..a828104 --- /dev/null +++ b/.net/AlfaPrentice/Models/Deelnemer.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Threading.Tasks; + +namespace AlfaPrentice.Models +{ + public class Deelnemer + { + [Key] + public int Deelnemer_ID { get; set; } + public int Afspraak_ID { get; set; } + public int Student_ID { get; st; } + public int BPVdocent_ID { get; set; } + public int Docent_ID { get; set; } + public int Praktijkbegeleider_ID { get; set; } + } +} diff --git a/AlfaPrentice/Models/Docent.cs b/.net/AlfaPrentice/Models/Docent.cs similarity index 90% rename from AlfaPrentice/Models/Docent.cs rename to .net/AlfaPrentice/Models/Docent.cs index 37e3444..51ad1fa 100644 --- a/AlfaPrentice/Models/Docent.cs +++ b/.net/AlfaPrentice/Models/Docent.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace AlfaPrentice.Models { - public class Docent + public class Docent : Gebruiker { [Key] public int Docent_ID { get; set; } diff --git a/AlfaPrentice/Models/Document.cs b/.net/AlfaPrentice/Models/Document.cs similarity index 100% rename from AlfaPrentice/Models/Document.cs rename to .net/AlfaPrentice/Models/Document.cs diff --git a/AlfaPrentice/Models/Eisen.cs b/.net/AlfaPrentice/Models/Eisen.cs similarity index 100% rename from AlfaPrentice/Models/Eisen.cs rename to .net/AlfaPrentice/Models/Eisen.cs diff --git a/AlfaPrentice/Models/Evaluatie.cs b/.net/AlfaPrentice/Models/Evaluatie.cs similarity index 100% rename from AlfaPrentice/Models/Evaluatie.cs rename to .net/AlfaPrentice/Models/Evaluatie.cs diff --git a/AlfaPrentice/Models/Gebruiker.cs b/.net/AlfaPrentice/Models/Gebruiker.cs similarity index 100% rename from AlfaPrentice/Models/Gebruiker.cs rename to .net/AlfaPrentice/Models/Gebruiker.cs diff --git a/AlfaPrentice/Models/Klas.cs b/.net/AlfaPrentice/Models/Klas.cs similarity index 100% rename from AlfaPrentice/Models/Klas.cs rename to .net/AlfaPrentice/Models/Klas.cs diff --git a/AlfaPrentice/Models/Mentor.cs b/.net/AlfaPrentice/Models/Mentor.cs similarity index 100% rename from AlfaPrentice/Models/Mentor.cs rename to .net/AlfaPrentice/Models/Mentor.cs diff --git a/AlfaPrentice/Models/Opleiding.cs b/.net/AlfaPrentice/Models/Opleiding.cs similarity index 100% rename from AlfaPrentice/Models/Opleiding.cs rename to .net/AlfaPrentice/Models/Opleiding.cs diff --git a/AlfaPrentice/Models/POK.cs b/.net/AlfaPrentice/Models/POK.cs similarity index 100% rename from AlfaPrentice/Models/POK.cs rename to .net/AlfaPrentice/Models/POK.cs diff --git a/AlfaPrentice/Models/Praktijkbegeleider.cs b/.net/AlfaPrentice/Models/Praktijkbegeleider.cs similarity index 89% rename from AlfaPrentice/Models/Praktijkbegeleider.cs rename to .net/AlfaPrentice/Models/Praktijkbegeleider.cs index a6f92be..d515d8f 100644 --- a/AlfaPrentice/Models/Praktijkbegeleider.cs +++ b/.net/AlfaPrentice/Models/Praktijkbegeleider.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace AlfaPrentice.Models { - public class Praktijkbegeleider + public class Praktijkbegeleider : Gebruiker { [Key] diff --git a/AlfaPrentice/Models/Session.cs b/.net/AlfaPrentice/Models/Session.cs similarity index 100% rename from AlfaPrentice/Models/Session.cs rename to .net/AlfaPrentice/Models/Session.cs diff --git a/AlfaPrentice/Models/Sollicitatie.cs b/.net/AlfaPrentice/Models/Sollicitatie.cs similarity index 100% rename from AlfaPrentice/Models/Sollicitatie.cs rename to .net/AlfaPrentice/Models/Sollicitatie.cs diff --git a/AlfaPrentice/Models/StagePlek.cs b/.net/AlfaPrentice/Models/StagePlek.cs similarity index 100% rename from AlfaPrentice/Models/StagePlek.cs rename to .net/AlfaPrentice/Models/StagePlek.cs diff --git a/AlfaPrentice/Models/Stagecoordinator.cs b/.net/AlfaPrentice/Models/Stagecoordinator.cs similarity index 100% rename from AlfaPrentice/Models/Stagecoordinator.cs rename to .net/AlfaPrentice/Models/Stagecoordinator.cs diff --git a/AlfaPrentice/Models/Student.cs b/.net/AlfaPrentice/Models/Student.cs similarity index 94% rename from AlfaPrentice/Models/Student.cs rename to .net/AlfaPrentice/Models/Student.cs index 60e6aaa..118bf66 100644 --- a/AlfaPrentice/Models/Student.cs +++ b/.net/AlfaPrentice/Models/Student.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace AlfaPrentice.Models { - public class Student + public class Student : Gebruiker { [Key] public int Student_ID { get; set; } diff --git a/AlfaPrentice/Models/Traject.cs b/.net/AlfaPrentice/Models/Traject.cs similarity index 100% rename from AlfaPrentice/Models/Traject.cs rename to .net/AlfaPrentice/Models/Traject.cs diff --git a/AlfaPrentice/Models/Weekstaten.cs b/.net/AlfaPrentice/Models/Weekstaten.cs similarity index 100% rename from AlfaPrentice/Models/Weekstaten.cs rename to .net/AlfaPrentice/Models/Weekstaten.cs diff --git a/AlfaPrentice/Program.cs b/.net/AlfaPrentice/Program.cs similarity index 100% rename from AlfaPrentice/Program.cs rename to .net/AlfaPrentice/Program.cs diff --git a/AlfaPrentice/Properties/launchSettings.json b/.net/AlfaPrentice/Properties/launchSettings.json similarity index 100% rename from AlfaPrentice/Properties/launchSettings.json rename to .net/AlfaPrentice/Properties/launchSettings.json diff --git a/.net/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs b/.net/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs new file mode 100644 index 0000000..2a01f71 --- /dev/null +++ b/.net/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace AlfaPrentice.Repositorys.Interfaces +{ + public interface IAfspraakRepository + { + } +} diff --git a/.net/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs b/.net/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs new file mode 100644 index 0000000..488253c --- /dev/null +++ b/.net/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs @@ -0,0 +1,18 @@ +using AlfaPrentice.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace AlfaPrentice.Repositorys.Interfaces +{ + public interface IAgendaRepository + { + //agenda functions + List GetAgendas(); + Agenda GetAgenda(int Gebruiker_ID); + Agenda AddAgenda(Agenda agenda); + + //agendablock functions + } +} diff --git a/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs b/.net/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs similarity index 100% rename from AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs rename to .net/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs diff --git a/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs b/.net/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs similarity index 100% rename from AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs rename to .net/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs diff --git a/.net/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs b/.net/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs new file mode 100644 index 0000000..1ac4eb1 --- /dev/null +++ b/.net/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs @@ -0,0 +1,133 @@ +using AlfaPrentice.Data; +using AlfaPrentice.Models; +using AlfaPrentice.Repositorys.Interfaces; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace AlfaPrentice.Repositorys.implementaties +{ + public class AfspraakRepository : IAfspraakRepository + { + AlfaPrenticeContext db; + public AfspraakRepository(AlfaPrenticeContext db) + { + this.db = db; + } + + /// + /// Get afspraken by ID of Gebruiker + /// + /// + /// GetAfspraken + public List GetAfspraken(int Gebruiker_ID) + { + return db.Afspraak.Where(G => G.Gebruiker_ID == Gebruiker_ID).ToList(); + } + + /// + /// Get 1 afspraak by Afspraak_ID and Gebruiker_ID + /// + /// + /// + /// GetAfspraak + public Afspraak GetAfspraak(int Afspraak_ID, int Gebruiker_ID) + { + return db.Afspraak.Where(A => A.Afspraak_ID == Afspraak_ID && A.Gebruiker_ID == Gebruiker_ID).FirstOrDefault(); + } + + /// + /// Add a afspraak + /// + /// + /// AddAfspraak + public Afspraak AddAfspraak(Afspraak afspraak) + { + db.Afspraak.Add(afspraak); + db.SaveChanges(); + + return afspraak; + } + + /// + /// Upodate afspraak + /// + /// + /// UpdateAfspraak + public Afspraak UpdateAfspraak(Afspraak afspraak) + { + db.Afspraak.Update(afspraak); + db.SaveChanges(); + + return afspraak; + } + + /// + /// Delete a afspraak + /// + /// + /// DeleteAfspraak + public Afspraak DeleteAfspraak(Afspraak afspraak) + { + db.Afspraak.Remove(afspraak); + db.SaveChanges(); + + return afspraak; + } + + /* + Querys for deelnemers of Afpraak + */ + /* + /// + /// Get list of afspraak by Afspraak_ID + /// + /// + /// GetDeelnemers + public List GetDeelnemers(int Aspraak_ID) + { + return db.Deelnemer.Where(D => D.Afspraak_ID == Afspraak_ID).ToList(); + }*/ + + /// + /// Add deelnemer to afspraak + /// + /// + /// AddDeelnemer + public Deelnemer AddDeelnemer(Deelnemer deelnemer) + { + db.Deelnemer.Add(deelnemer); + db.SaveChanges(); + + return deelnemer; + } + + /// + /// Update deelnemer of a afspraak + /// + /// + /// UpdateDeelnemer + public Deelnemer UpdateDeelnemer(Deelnemer deelnemer) + { + db.Deelnemer.Update(deelnemer); + db.SaveChanges(); + + return deelnemer; + } + + /// + /// Delete deelnemer from a Afspraak + /// + /// + /// DeleteDeelnemer + public Deelnemer Deletedeelnemer(Deelnemer deelnermer) + { + db.Deelnemer.Remove(deelnermer); + db.SaveChanges(); + + return deelnermer; + } + + } +} diff --git a/.net/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs b/.net/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs new file mode 100644 index 0000000..d693dcf --- /dev/null +++ b/.net/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs @@ -0,0 +1,115 @@ +using AlfaPrentice.Data; +using AlfaPrentice.Models; +using AlfaPrentice.Repositorys.Interfaces; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace AlfaPrentice.Repositorys.implementaties +{ + public class AgendaRepository : IAgendaRepository + { + AlfaPrenticeContext db; + public AgendaRepository(AlfaPrenticeContext db) + { + this.db = db; + } + + /// + /// get list of all agendas + /// + /// ListAgenda + public List GetAggendas() + { + return db.Agenda.ToList(); + } + + /// + /// Get Agenda by Gebruiker_ID + /// + /// + /// Agenda + public Agenda GetAgenda(int Gebruiker_ID) + { + return db.Agenda.Where(A => A.Gebruiker_ID == Gebruiker_ID).FirstOrDefault(); + } + + /// + /// Add agenda for a Gebruiker + /// + /// + /// agenda + public Agenda AddAgenda(Agenda agenda) + { + db.Agenda.Add(agenda); + db.SaveChanges(); + + return agenda; + } + + /* + querys for agendablock + */ + + /// + /// Get Agendablock by Gebruiker_ID + /// + /// + /// GetBlokken + public List GetBlokken(int Gebruierk_ID) + { + return db.AgendaBlock.Where(G => G.Gebruiker_ID == Gebruierk_ID).ToList(); + } + + /// + /// Get 1 Agendablock on Gebruiker_ID + /// + /// + /// GetBlok + public AgendaBlok GetBlok(int Gebruiker_ID) + { + return db.AgendaBlock.Where(G => G.Gebruiker_ID == Gebruiker_ID).FirstOrDefault(); + } + + /// + /// Add Agendablock for a gebruiker + /// + /// + /// AddBlok + public AgendaBlok AddBlok(AgendaBlok agendablok) + { + db.AgendaBlock.Add(agendablok); + db.SaveChanges(); + + return agendablok; + } + + /// + /// Update agendablok of a gebruiker + /// + /// + /// UpdateBlok + public AgendaBlok UpdateBlok(AgendaBlok agendablok) + { + db.AgendaBlock.Update(agendablok); + db.SaveChanges(); + + return agendablok; + } + + /// + /// Delete AgendaBlok of a Gebruiker + /// + /// + /// + /// DeleteBlok + public AgendaBlok DeleteBlok(int Agendablok_ID, int Gebruiker_ID, AgendaBlok agendablok) + { + db.AgendaBlock.Remove(agendablok); //.Where(A => A.AgendaBlok_ID == Agendablok_ID && A.Gebruiker_ID == Gebruiker_ID); + db.SaveChanges(); + + return null; + } + } +} diff --git a/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs b/.net/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs similarity index 100% rename from AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs rename to .net/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs diff --git a/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs b/.net/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs similarity index 96% rename from AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs rename to .net/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs index 7f04071..2712eb8 100644 --- a/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs +++ b/.net/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs @@ -33,7 +33,7 @@ namespace AlfaPrentice.Repositorys.implementaties db.Sollicitatie.Add(sollicitatie); db.SaveChanges(); - return null; + return sollicitatie; } } } diff --git a/AlfaPrentice/Startup.cs b/.net/AlfaPrentice/Startup.cs similarity index 93% rename from AlfaPrentice/Startup.cs rename to .net/AlfaPrentice/Startup.cs index d924e64..d71493b 100644 --- a/AlfaPrentice/Startup.cs +++ b/.net/AlfaPrentice/Startup.cs @@ -34,6 +34,8 @@ namespace AlfaPrentice services.AddDbContext(options => options.UseMySQL(Configuration.GetConnectionString("AlfaPrentice"))); //depencies for interface and repos + services.AddTransient(); + services.AddTransient(); services.AddTransient(); services.AddTransient(); diff --git a/AlfaPrentice/WeatherForecast.cs b/.net/AlfaPrentice/WeatherForecast.cs similarity index 100% rename from AlfaPrentice/WeatherForecast.cs rename to .net/AlfaPrentice/WeatherForecast.cs diff --git a/AlfaPrentice/appsettings.Development.json b/.net/AlfaPrentice/appsettings.Development.json similarity index 100% rename from AlfaPrentice/appsettings.Development.json rename to .net/AlfaPrentice/appsettings.Development.json diff --git a/AlfaPrentice/appsettings.json b/.net/AlfaPrentice/appsettings.json similarity index 100% rename from AlfaPrentice/appsettings.json rename to .net/AlfaPrentice/appsettings.json diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json b/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json rename to .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll b/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe b/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe rename to .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb b/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb rename to .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json b/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json rename to .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json b/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json rename to .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json diff --git a/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll b/.net/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll b/.net/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll b/.net/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll b/.net/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll b/.net/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll b/.net/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll b/.net/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll b/.net/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll b/.net/AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll b/.net/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json b/.net/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json rename to .net/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json diff --git a/AlfaPrentice/bin/Debug/net5.0/appsettings.json b/.net/AlfaPrentice/bin/Debug/net5.0/appsettings.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/appsettings.json rename to .net/AlfaPrentice/bin/Debug/net5.0/appsettings.json diff --git a/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll b/.net/AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/.net/AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll rename to .net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json b/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json rename to .net/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json b/.net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json similarity index 100% rename from AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json rename to .net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props b/.net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props similarity index 100% rename from AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props rename to .net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets b/.net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets similarity index 100% rename from AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets rename to .net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets diff --git a/AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/.net/AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs rename to .net/AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..8b20cae743ff2ac1f662d0f490356f446fe3fe6b GIT binary patch literal 277091 zcmeFa2Y3_56E=KY-o66EFKL_4QJ{zp~__1?$c|!ozBFPiJ|2KLgk^pp}u{3RW`=6jcI#m z!fwo_!|^`7CO1~cW07%o)6`_Woful(x1wf1&7hj{^5}rR;fio6DcjOtM^#fMYd2J7 z!&#e9R!uB!i=R65lpn#0c-)R;VL~P}CY-6uhO6T?S#5QI=t!bfXeR)=j!%Z8qr#DF zGTqsEpKdU>GTD#{r|onX`rfM861yXQndvk=9B;HU?b>x{S6bSw%Z82}lhV;xA{^Jx ze7*PJJ2OaZ+z6LA*0JR0ZcW6vDn+lCVn?ZvR`qqcO%cxV#v5hQ@Wg5frOtvu^ONJKN z)gfv$wRXaGx_OMUsW`gfM6DPl%GLXOM~Ug;TdL%@%)qx$BO2{~%T)a>!q^R9Y)w#d zg4QTqi6^IHiAXFJmi1{v=&CQYF5XI~VpOoJl8xzzEnaRTD5T~Rs320w20NY<6)agj zA4AQYexZKoj+_pP*RshHN;PbffC_CJL)+{^zut^kBAQ$zE7m4Zut>j7ON}KX{ISqt zw6n!2YG?RYG#P1ZKqoz?KN?QCaxc^?m7^^=-H+Qk@vjliQ{wG5h4Sh`zuov)VnJx{ zMmya^E}_uV19}cEl1stHvPmiFk9s^Q_Br*oJz+}0>+4i|aTcClZDTx~9=SM`wlmVD zBZZqmVN+0!bL*+tt5t?0bu_*=bE7tg`oR8U-s%OlarWlHi;I$HPr7Pv=ZbU3(Wo6225bWZj&tir zV5b%>Sxv~IcFImf?L?$0mY}f%)3VkEX;uIu^pj)NlftNNVbq+UtORWu+Fzk!-wqmT z3#P%W`oqJSSj3$qZ4YII8$SG%(M#=66xuL&rfC{L8g_(+hJw-NjJufnJ0X(L)TWf# zKzD-5!vj}P$C05qS+=PLK?r+MGF?v-tWZN!WBaSiF=xBRtaNV*H#cn;qDvKaQVI2eh2cV%khd2lH9JGi0Z`NW+(l3xiXws$@+pxy zm;#6T^=m$sU>YnKr)hu4uRzFx5G){vFi@~5XdmHmsL{pEz;x733)gyl452>EM?^a) zgYv*(kD$t@G@|Y`*yuMJQs}VL6myA1>`Z7HhV&ZgA@+sh!gVE10~|X^=ycpM@q*>h z6Aj94ZsQU|Q#tm7rXo3BOw$;OWjKL^3TT`c^xc9Mo}3F!zueAD^tPC3;6LL_24b(1Fli&`6Ox_%RYF;vS2LXtSuigP=8V zl?qzGY?K-i%V2UDsYBPZSh{h8p|LS&m133$2(vIWbqvV_7|w)7CDRRZNFD;!1)q5j zZ>*_NA)Q^IAaDpND4U{dCsAc*Sv{f-VOQu2-1P+2r<^}eFTNWz9pjGXfqma_CgntJ zL+S96WI7ZNCu$oJ^>tP-e4-}4^>&JQc)atlsJcU8QgT&RBw~DbC@pvuQll9u*aHdz zyN#^E=hi&NVh%!XpCEEis4RRfQoitXOmmV>$a5Gp6?{mh`icNzLo6Fx2oHcr91cAN zFQpOb@FF!XRzksypmi^3!=orHSw8|_UW^GBVuTg_OsYmgSzzBVxBA99E3a3qL++!X zyx>t~cV()wE}Tf%aakuuLs!99!SpaAy_sQ&M3M$rT6?9E90Q%jZ_E=GiV3t-ITk9@ zg|3;#YYNu|6L&j0EYp;Th*#YUdJEr)plLg<{p4gUkrkT8K~upi4gC7CnIx7?>}VCb zD-2LV*Z5+*mFn&%sxFeM$^>XCcpOJBu#kp{&~Qc`LwIXZPU_ej7Dif&VYL?Fq{pfD zl6jM0-poQ*T(NLK-#!`NUZif0b&B*ZgZ{ z1FdE?_%FQ+UoD7>=2?1|P8!i&1sjSo&|{3ON=E8!`1Pb`D)gM-*6Fr`Ow#S~M!S%u zA^Pkvg}ll`JWUDYhv*n)| zP+z3fC06&xWU(;WO!rLazQir>z|#;!^F^sOh@e9XIYP-u5{^L<;rLiIl7yRph1`Lm zLH-N5Zs9A(S&sLZ)jD4^312ie3O9$oNYsISVCoXx3|p$1&MIt#rmGovu*gM#H53}4 zr2$IAt7x{gjNhttSTQg=&q2BKoX|fD`Y(5>YRLe%18A+EC%af)K>-%FjQoPxu(n9C z7gnis2nclZ5Z)YUzr*D!aJ6cSGN0Zi-=UI9z^~__UT`kVKPwOOeas7mS<;->R<}3g zxmSKRHEXu}!ay2*TMvO}GIfX*gfc3%DZ)~l&=jZ_Ho^rWBOy~qGeGU?coL$Boq14R zr2dL^muP(~)pBeiCK};>(0#63GArK*8?&)^rVy(j)98zYjbYeG>#D66j@wUo`_e2W z0%uTDD80xi9`Cs6?K(vQu{59>1_X{lveulNdo(2p?wqi81R9H!7}#Q!K*I54J57;S z!Fm)X6g+}J4S}k>jW4IMC(wdV-i&%$+SmkKUgTg3{WZ{^4XQtAc*MVj8-s_-!734W9*UZT@Zr0t#V8()=^ygjtFy8^)vUf43cZQ!mEkxNHo{K)G7g2Ypv2}}uSEsNo(LpE$~4{vsJpX}qleFc zUx=~9&j+9ik%0Y0n)k|BCi3I3)SQ-K>?E|EnG0KCcWok!q$46HA|`^N`HQmEHtiQN zCWMrN5H_>Vc?0r(&0dSL!^PK#+M0rWlXTbAqANhD7a|Y9So5dxb(ZqMLaL`w$r*88k1+~Y-FLX;GGnr zhcvJ|?>Hijg^00X1w3;JenmW6S6OFc z$DJ@?DNM)&txD`mbDNAfo*UI^v@N0dKqxNKayDzPM!7D7(&8s$P-ME9le!$L16StU zh-UArCY>Q#)p1sb4}xZjp9Y=qR!8EYFfDXp1VDCr<;RyU^ZjhjDAa1B|I35%0 zV`6F~9uoz9Fx2new))omfN9k+8;kcNL@$VZP3naY!PgdiSrm(_+zPcC zHrYNpN+VPb!eLNW{KP0~iW!z|emJz!2F4-`YOH#Cqejiz$PqB2NW%>?qNUXG70{kn z1Urk=xxsybP7}jp0(ysVB8h<)b~@Nkdg=j)xsbOUBAfF)L00y+30r~ zY$$#hvkE74gyT~%opcn_z;eG=Z z{TZvIB+yjZ@)dc;Xv=ApW^pEL$Y+7E?Qs!XdRA&kbjs{37+9n=K32I!2%=dvJsY}< zG!mP-S<|7aaSk*W+(GijvW)rSxzHFmyO3F*+w55IJjxE!*+bG5JP&${)DyL{L5Zf=Khl(0r;p1_VwB@eBp>{F;zEBILTH=p1EZ3<#INwt~mv zyse%nxD;xNpJnD9cZTB>3nzws8PpfQr=duzyV;yx`|{$wHf!=K8KK!=a>XinZCXHv zvy5n#3bI^TJiV+x^OiQzeHHW;?(87f$z-QMT@4ilpSn>OHANieBlo?E{^}ZNDtHbz zY0_!T*FrHxxCk|N&lunV6C(3xoADJISE2=H0S30vt6|0rGl}>^X z)=&kv*Ta;8&*?N(1zZvGyB6jN@4$=cd2^<^OuW$K4I-t^=Qc*JC6dbJ)3suRK zK>?vwz zFn9GPaA5sjWhltQBzKl&xHEYs&LLsR^v?28(XeiVSw$M>TQ2`eR3C);+o8Vr|m(7ps?T*LKdYIhs7d5AI3qg(nY@; z8jHU;GYqLYHOVyc8)T}_Jvqq*C_^5h61&zf|_d!)xr;(^l{!c@3 z!K);ZDTV{>`9A|S(+l0Q5G*3@p2c?;eEo~hmZsu_VL35-4ytI63hHAKk4vZ788kR& z|4pvLDb!e>67Tvv3@Cm*Q3DR^8ef3o;;(G53hJb$Q31aQ-350dMl>bD7_LIx8Gi|i z3f>sJiTw0FFGCHDWvzFT_5G8XP#x|G2rXVr{}VI6f#z(J_BM?pB;6vN!xi8%EwB7L`HdQRWaz#*X_N|m0=VfQf|^5*z>I7El^yb3)94+Zho2X!ppy`wi$XcvCQER;1`nC@OwOLq5dRaP1g7 zo>FI5y#>XAXL3P(FkYYBf3s81-iFp9xz)_=r!jF7E@em~HYo>`cUB3_M%0VS_gyFs zyrdYEX4RL9Ow(kFx^QtCqVszSHPWFJw1=2%cn>xdyz5|dHe=EFeW+`D3X@rcjgdO6TN%AfU&RqQcV;`lW^CSLag=r8zT6pC`XZ^qH{A@s})>ZG(; zw9aM=I%Y?_#Ygz|;^)RQN1*xI*vBxT_@P3zyRq5Y*e6hba2`<~zXgew7bDy?BsCfL ztVdA$`4ol}{3t0^p}fgo+L8Ysbh7Ai;1y}_%g@JE1dHryXVZ4h=UtFBn82{T+n>R# z!2Nfdb>3OL(D6;r4r9-*vCpA*SW+U5J;Ba~ zqjbbL)vceQGH^GPd!HW<$DDlsUy7lKO}cP`xbzTzg(6BcYoh|o{DufyBu>k7$a7m9 zRwF%e`5QDB+!Z&5km1PVi_7z9euuiiwI%nWV+ZzxDl_sDwm+bf{MJC+dc75vJJRC$ zGS0~2>#M2Ukw0O=X?Zw~K5Ho_wE54DNY^pUXfs&755j63%p1iv`D@bdh=c#2 zzVQ1sZQL5A9OVohoFaPcb|vlF9af~lkrD2Mj@8YV*uYY5Xqd1B2_Rze%_$(MfpJt9h2bfXRWs?zhb)($1))A@-es2~nGU*u_@k+P;vJEqN zPEAuP+dTKFIeIddsNMXVJw|Y(B*m4!#GF**VIYhxHGH?oKncz zQf?Dfd8LNFk+Tbw7HKBM8E`JrU<>UQ6c>Dn81BsESjyqED>M|`Vd8n9V;dS8#m&>A z=j;Y`fgPsYijScw9IyAEtpSw72!l@m~+H(VDQ3+{WU z`w@)je|P9A(&<2~FH*NfQf85P3jcbrK#cprmSpvb*go#Rce7$}pPxuyf0Yp74OxnC zKF$Z0@xu*ZL6MG=U=@uzGv;~e2=<21UZf>lrrq&D$Bq>NO(cuxRj-Ypzepo7(+`(h zZKR+=-#C|-4(jb{@5?j8nK_{EkV-p^Oj$a{&KWK@f&R8<-)`UToq)&XT~)bn9poui zo5F;`?{Co8&lAf%prWAhYBvbR`WO_gm|Ce7^PbRJ@PV4UB5*Nr%X=FAknlw|gTBDa zPOM4>a3vXtaKHt&1S+|Lw!DLngKV)c;a*TVNSpuG26hbf*;MS7P+>?mj|9u1RW5J zYGrs}+d*ZKHqWybkKU2a6vrI~&d{?x)Si;dyu!!d@*YQzc|~5gb2O`XJHWKSJvV#D z0KFPRyS?a+(6=gbH{3lS&0cvYm{26&&!?%2*(FQ!>J9Bh3;I#*#}c`F3GDP(rZF6^ z6kS{&Xbzlj#R@M#QM32<27_QwLpTw|1_9}J?+hCXz5^M@7U&~jbqZ1lnrIt9pxA!U z-UU?P{jxSf%QQxpLC2A~v}>GjK@ z?!sJNKiuLbTJNSaZ||m4-1w1_yncGmh;6?4tY1-RaqeCA#@UIM3aBgixMnP5(%jZr z?<1A{p)#=7AGF|&p_Gm!MCC{BC=N>y)qeoA7Q8XjtQ8rX(koP}HUpuFy6o0HL6NQ= zVHrd5CH+G<6x|LtILDOw9zG><*Xd@EdwXxK#T>{y+cOo$Dh*cL*Z z>;`>Rg&xJ|i-+Qi3m*4WYmde_u{(6p{IT`c+d{2EdzM#_grL`4|}rPOi*xjU>A$j!NPhaK8dRIN5E4u|sNTt^^qtiscMxQ9cz z#{~{{&$jUO0z5s5v20Qaqo}C{t#x#^HEnVtqYyu!V>Qxt%^WA95Kg7M`7Cs%HSKgF z6GRD&fWB}J`pD%8r(#gm&p%Y*`hC<74NJ+qrIAom@Y6%xOfcFT635FrBhe^myVNb& zwpYa33P?oMRx0md9Xv$izPFscRAn2Zv82f0AhOy1ck;!>VZx#SM#I*;QrGHm1{A7t zZmDZL#dHib7ksUkmdPfBV=^IlEHo56iIsWwo~*{bpse6&86sb^A+FqI$AugRRe=}$ zf{v$dZJsKQ>7dwRO+2|s)ROVg7`S&1s*y1%PH7k)tF6l}vPlZ16LNXY+r&rDV0`xs2=RaVC&C=v-(LHpUTI|&pXV<;X@)HWgmJ&5bb-&Qz|=xF)a)Dg{$|5_P~)H_I&|{V1_2`7z;)&PQ?-EmJ_il&|L5diYjb#CmnfK zRZz&*ky{!TTF-OG8BBR5x?>0sJ+38J`j>w z(_z+$Z4cEMmAcLM^?-)sB}S9U zVVs;b)3XO)CX^L?T0f3hgaGON_Jf`xoj=0a@WyoI99tG=7zPBcq5Lab zx+PETn~=GcaV%9xMb%I=Gw75$sHaGdgBZIatAs~&jEWo6(n&~B7*MQCcve&WuGDF^ zBxl2xf_K}@fx+RvIKW00YYlW2rQ1d?2bvel?yVMD3L1NIYN<|m!pb%d_)OtY9(5NX zwaz-I9p7eOC(c@F>1IuFz>08iMLmrbgD#mAm%*iAiE^Q3KC}cL<$|^~teLn0tI&*a zHd5y}%=J*0(*>!mg*E6t&4z`Ml?`an*N}5h#TbWu1s@#UWm0xfa|1NBeGpKhu@*j1 zO&U&+2-Cqg9OQ=PRPd%eG;q$u#?e6PZCm=SF@g|A4NW4wr9TM-7c#p*U zBt9VVA&HMjd`#jK5}%UzABoRMd`{vE5?_+|ip19>z9I1~iSI~!PvQp>Ka%)~#Lpyt zA@M7T-$?vU;tvvklK6|n-z5Ga@h^%0NVIDYQ9`0Ui4G(>k|-t7i9}}-T}W6Yx{~Nd zVhs{&l30tx+9cK?u`Y@3B-SIbK8X!TY)E1w5*w4)gv6#KdXVTzVlxt(lh}epFA`gl z*owr~B(@>3Es5<&Y)@hb5<8OEi9~M_eMsy~B1EE$L|+o+B>Iu4Akm-101^X93?ea@ z#1Im@kl2;PZX|}1*qy{4B=#gRjKpvfl_W-x7)fFjiP0p+kQhs1FB0QOj3+UH#6%L4 zNK7WNH;E}Esz^*FF^$A@5;I85B(V>PStMqYm_uSNiG4}TBe5TeFo|js5fV`nHi;S% zwIu3D#7N91QBNXHqJcz$M3O{`!~zm&5*ZR%5{)Dll2}AyF^MJ;OGxZb;s6p$NgPOG z8Hwd24kB?di9<*nO5!jQhm$yh#0nBek~oUQ(Ik!`aV&}BNE}b%1QI8bIElo`Bu*i5 zDv8rboKE5l5@(V)i^SO^&LMFwiStODPvQa+7m~P$#Kj~oA#o{*%Sc>K;tCR1lDLY* z)g-PVaV?4KNL)|i1`;=txQWEgByJ&bD~a1k+)m;S5_gigi^Sa|?jdn6iTg<0PvQX* z50ZF@#KR;WA@L}Q$4ER*;t3K@l6Z>5(5kIA73D+Pm1OWK8Q<=-w|dP| z;P)l?0~4H8;60An@Xsdan?ID`k4$i*06TC=) zzga#=+x(dXe{O;oEARtvTzvZBj?G_4@RugINr9KWUaigeN`k*O!AlhQ*LDLn&)-P! zwu>%~g4=a4DnGfL0(|_1nV~1WEU7CYRM$@J zO)$Bp0z6^%y84?tNN`6JOfIYd&+J~O>qe;rcQV1`>I(3-n@!c<+*yLVnBWx(yyCy9 z`kO5Y?rMU`br#?J{-yOA+)aYlFu~+v3ox&uYfA81CYW4t0iO7J(^G?-y0NwduVaGA zWf$Ph?wY5~SXY9(n_zP71^B4p2kI)io&>LNf@umMz=@xe8oYr7Z)k#Psvy8O{Bpo$ zCptE7B*7b-V46}0Fz*;Qk>E{DFikxK_|f4@bP4v5;GQPSA( z=K2Mt@EHnx{RQ8AJKHg1M+x4^1fQwEy>?nhe{*jM?qh<_Qs7N*8mz%POK`{p zpRK^WM=F!xz9#q_1#b7#ak|!(OK?9Ee69lDRaURT6%yRv1fQqC!|JQG%>yKOpb0)- zf!`cr>u(+;!GldOO=(3Htr?QkZE%PL?_z>!>MOv!4elzzyP4pN6!`nyw$?TemEhe? zFioY!H}es84+-AW1k;pTfcZc_OoE4-V49i>FfYMM2_9jBX$mjE4@?@UZ5}DXqf9VO z^#%C)MyJ3jEx{p_;m|1Xr8jTNRkw9FgFt3BFB%`8V4VTw{W7SKt@>?WoPDmEbxP ze1`&auOKGD^G)!b3cTId<=SJcm*BVwzDt35t!t3rgbBV|fjQ4f2~L^ddlcAy;2K>h z3nVygg6~z}r@QZ~!5In8n&A5sm^Z6N30`P|?^ob?KM(BI=nQR(BzUn2rjVYfqP+WR zlHesKm_mO7eDZv(wmaXvzXTs(f*(@gPj_5jzu-~{KF|bHC{cX#rKfFla8Ku(mr3w) z6HFmT0siUJbIM9zk^b{R5`3@;rqHASKVG>|yAX#+@S!G{LYM;l*?w_t^I;NvxCy3E zrvU$PS6^N0j*#FLCin>jF56@CN0bwIqy!&jf+=(=zB#_h*p04nCJ0AM@G&NsLaYMZ z`@yQn_eRae@e+K338s*(05AJ$muG)}P4axA1fOJrDYPrVPfSm1 z>Q0v6Q%o?0fCZQj^ruSjX(pIL#RAM5?CBDGh6$#SvH-{L-AJ2prUaj5f+_SYz`RE~ zTY}Fq!7nNB_m7^SXY}Vv@OdWqWd-IF-t#5+0u%g-0`u9#g%W&`34T?9x!ZHG1Ycr; zUsGV-x-XUB%S`a=3e3CQ%O&^<6a0n(bI<%r3BJk%zp22VzZue1^lAyd#st5mz?1KI zWrXU!u9e{HOz_(ZyxB$1X*d3Q3BJJuzoWq1jlWTXZ!*E}Dlli`W(mH<1iz=iyguJ5 z!MB;<_Z67e=i4Rt4iijE8qKQcof3SP38tkF0p9fAjOO`n3BJb!f26?sJzJ++%DobN zp9!X=6!FbdCQj31_x%$5fC;807XjwI=z|jckO`)x83F$3_qFslKPUjx%!35Kil>pz>d+E&|I1#EBCHN&1OiNn=%v;LK68wq@ zrX?@|ww@oU3*}V_e$52aQkekrPUdw9e!~RQl9~YXy78t2zh#1H=}mxn(CKXne#Zp= zsK7kh^R5KHXM%rH;0a^S*Dl2S68wP){#k+fbm>D0{>TLXqQE16?XA6nk0tmM6a1?J zKXCQ}U6DSO;QyK6-xQelNS{gY=O*}f1?J!Ug#>?Tg8xupK3)1sg1FzB=~z1{I>%0j`0Tx{?P>gqrluH{z-y=Ho^ZYFn_^cB=}bo{GS4U zzhYl)^KTOTy9sWG7_X?JymkK}!GD@yS|1VM-8&zmyMn(Y_-_;3UV%#wUjO7lD*i0N z|C-TCT3cTc#&9%)PB)Fpq?xeuKSI*PmQVH&4 zf;%fPA5%I@a2FHYMS=MmkR`!gO|YfFzZ{X#W^|L_HB4|<1@2T|qrq!R@LDFgn*y)c z;@@YKOT4xOuVaGOP+;y}t}DUaP4JouJa^rt+KlxiczqMRmI9x?LDd;*b!h_$-p~ZE zt-##v*+_ynHo@yC@JHbpy7F%#!JC@kbrqOX*F%DPn&9pVJms>me!y<~{$m61<%W-bjIYC$qf- z?_h#AR$$(J?I^)Jncz(nctH8J%hl|-w*>bw!J8^Dk0b3Y!66geLxDLPWfI)i1ou>6 z?tPU@a6c2gnF9Ae;;_-DIWzhS3GQ!#H&@^dzTfKc^fcT&;)Oxzing8!aGEQcQL_RD)0e47U^2Is|4?6g11s&UipVg@a`sfYX#=Bwml?xPZPY2 z0&_Qhm;?_u!P_b@_n#{zc!UYwPJz$fc7cAukrF)01aGgvou?nFOK`LVk1@eJC@}Y* z$4c;CCU{2$=FMuH1dlhtJ1H<kcY=KaP#5)#!ZgDF;{~3HNh1M%*~i5!TXuu{tC>UlduF=o8SQoJn73uZF59| zqb7Ku0`qx_Ex|P=c#s0~LaCMDIukrtf%&8+Cc*Pf@DK$)ZM!*o0IHYZxC!1xf%&|< zL4p$|cvl5}ug{g5jidypOz>_B%scZ15}Y={Llu~N1sMs>n&90P`0_RH`1C&~64)rg z3r+AI3Vcnc1)-5D{w%?ZP4J!y%nPMSf|r=!VG6wE3tMTIcz+2#zyuFhU>>YqD!~Vu z;7SGNbE{<%yxatjP~gGGU#$z}APGL$1dmi;K4=~y!H1gQQ3}kHmkyKQ!%gsL1?FDv z5fZ$@1dmZ*?u#BN!AF_ku?oz4q@yMH7!$mg0{3~o+jaAt;yzY_k2AsJ6qtYW@e+K3 z2_CP&w|=sz?if#$;FC=71O@JJ{SsX$Crj`tCU~L(mn_~&gHM&<(@gLr1+Lis@Pm~1 zb-DzfVS*W@ZJi1WREwrUw5_ypJRfjC@@dgIah+uGr?5~9Q$RK?vc)y z;0sLfR0Za%{})Q|MJ9Nf0{1$&r>5>=3BJSxPgmfZvh%eWmrC$uCU}MdciZ_eu%A$^`GDz&r`zY6-r^1kX}nzNUGt1Yc)@XDjgGleIHf^Raxa}}7+CT^DCTTJl23e0`cTP6556Fg6Wc~@||1m9tT_fufrG2SV` zcbVX@0{7bJJRMcLTY~Q~!PN@P{knT4_&yUHQDAQK{Sy3u363go=DAsVlK!9sKV*V! z1%Bj@9rVK7!xH?639eD#f$c`?9_djDe#`{dD)4Jdn{;tMF2PTj;5r57v*RZv_$d<{ zQ{ei+hw5*BT7sW3!SfZE4?xdK@N*`(UV(Wy>v;)&!34(@m>0^668w@0Zct#}<-RPz zubAM30(0-{RSAC01Sb`k`=YN)@EayLrNI5K*+h5dZ%Xi6CU}7Y^GM*^68w${PAf2v zP`xX`@0s9?0$(yAqC3X-CHMmqoK;}{f*(roM<%#YfqBRHu>^l&f)^_A7XPf!73ot6 z{+|h6q`wflS?~Da7Pn-xB`3P&l23p1RtTmyrp!O;4UV3g#vTu#FF5y zCiqAN=8G@gBzO%Ie3Sw||K4BP30zZx*D}FJD{##>6?y<#TY}dy!N(}@lEs}aeZ+~X ztt-LZP4KY_%-7o1li>AD@No)UwONH;FlH9mJ3mw4OOoBHz!6z#)-x#um1otw*rzkKtV@nC%$^@UPzn`+AR5nIYv8+|LA`tH3-iS|P#xP4IaN%ze=T z5@I?yDZ5}GYyPM#P z6_|%-_mJQ{P4FcOyx08hRr8%l;4lduZh|jW;InSIRVRs6O7I91e3=6C2-Qdl9%X_r zS782vqa}EZ3BE#sd2x@G;Jr-nl?wdqr@x(~mR83}@OTq^l>+mHxd{?H(F9+uz&%tleNFJq3e1xb z=1K5=CioTw=DlcGf~!sNtqRQN-4O|nn&8_Mn18b^!8IoMb_M2ce60l6nczDVxbFx1 zYtK9;!ShY- zaM}dltH8YH&q#3A1mCB?`?OnAhgljWc%cctUx9DWEYmhGlHkQA_yGmxNxV%Gyu<`Q zsK9r;Uo)hy<52A{!3UV&hZLAsq@@ykpb36hfqC6nCc(>1@FNP$JH~?~_+S(Kr~>mv zu0tgFP!s%^0`q2dm;@hgf*)649w<9Pf>)T}Clr_uZAVJ*Q6~6F1?K+q(Gq-&34Tg} zxpQ)?1RrODpH^VL!h5^~pJ0NYQQ$>AapjKFF`g*FCz;@96_^K6PnO_QOz?9G%r|G9 zD#53j;O7;Xd*-K0@EIof1qJ5K>P!hf%LKouz&tc`wgjJJf?rbL*MHqrvvIBjpJ#$! zR^WRd|5@kdo-e@{nBZ3wnAf@sCHNu}{Hg+To-dZ*OHA-<3cP=p{q+EJsRUnUf?ro) zPTl1ae1!>qLxFd_Z{8+XIbFe(5`2{jep7*YPTAL{ubO1ni?B*}U5$D4uc1+-4fcB~S4ypQV2b?KT zS`!b~W;#bwjp1~pjxd#D+ec!Z={)pd@mdQIItnnH?GnKW+|}WX-MQXwN`+(T(r^Z+ z0dpZ*%*A;%DtZFJ4r*QJ7MyHbgaZKWo2cRyOen@4k(lN!Mb` z*o`;_KHjI-LG)MR1EGnBpMCd1N-8&yOz9Uhbe%ys9$O;sNOkS7?g7ZUm&AP#o-!^OhGL;|?zkME?1_I+ISFzf1U8#1xyG?} z&6#b(R!QkYP+i>yG7m1R`&QHps2NmKULGCLH(U`GTz;szd>C5$x&_JV2_1Mzr%%cY zPD1?XN9z$hWj#vbF$gcYLpZsEIk`^)yP_mlc9}`e@z2c(&h-T(<4?h!OsV?W^8f+pSjsv|c6g8ibeS9XZQ8aF*W$cK`od^;`7IZ^43^054c5YCqG| zz75S=I^CCfj|1zL-vP{em&AJzUShZ8#P;IEehBQsT!{_ZEw^l~tg|0Md9=+p%Y)HK zWKeZ^MNLg4+AkW74k)Ltd5w>uZK9)%8oc|xbjB0@YkT;t9yBOCATnTJ`H+hKcHhB6 zO20rU{lD#ScKrX6!+A@IE+6;)FLn7BxwchycE9r3v)y(mPY-MDjITbuOtd^}%v%M@ z2hjCKf$D%U?9ZJ`6$|wM{?jM;*JiFdx|>Je>Q+fcrmRl^vHnNmGYD#?;xBo~B^&c* zx)E=tUjlmsA7#YJ?PcC$W6MI~P+H-l;<|!NSwk$6PG*udSzI3#wQ+}myk9PoAxp|C za3OTxvUseT+|&pf1ZE_-QH*)3KK9Fo`xVUDuhsW-8<$WMgxHGm>Y9qd0|thp6$AU* z6$8MC^)+$ymF^0^!H+w;dYJ>mZ=~=zRNvwe>pK$P(|6%Z>5rI^l&sD9UW@bn6R?MI zzKbvy2w=Tr`)3%F%IU3L_E&CZ@Qr5v7ue9tX`K4NZFyOEZ91H)YYJ5+YOP;^vVJ4+ zJA{|)&YbK{ob11VU7YI}#Mo=md2P#HN$=lKA88Ak2cy38gYPt>|3GaIM=cvD>(CCP zlatA~^)CR{eH@Y??7ugi*t^RI=6+is!cc zIxc}LH6E1y2L4vNy9oalCcgUry1Tm>YF&S~*0psv6`6(%OPVF9>f( z^geH1@A2lfHL%xluPjF|xUI_*vf4lq2rE~emN$kQ{556U+y+)J%7-OytHt!B?Fp(+ zK+M{f82&@|eB0s2O`P#Zdvf~f6l;5YZ0$f|M|zH&W&Dx;@@u?gUgagz2UuKomRsmN zsMpclN=fX_P&%i@H}SF;Xw2~S*#6SYg`jV9M<1VWOvQz(c2%-59kH!4V646*$|1b; zJ;&*LmebcCSaG0rE-Mc~>1)AM$>9KK4!8bJ1tPNapVfm$As6TVUmrXMqUNnTIoV*x zlOb|WCsohKf`~N;zqSUG7y{uP86M*e=uzH)b_15rdIAj$DXE;i)TB^e)(;m?>t3I` zs?F?_t!F6IPHpy?+hD}^1?ji@MI!x&3?4AJU;qC7hx9A2Mwe^tPVfJp?tS*ak7{Mu zx!=m#6Th>Dkr+;3>Zo;ReJ>~L9!}OsU?auqtl8CDT|13}roEls#reP`CwSD=h`8Yu zyOxw-*<3DKj)sz+juLmSg@37QFs(5_SYt`-1>x@r4E>(ic$yhL zl^ZxJ#r2VUH`?i@aCO|aCgUS(ZxT}=yi8upnY@NGISttPjLAULqM*Z@*Fs6!bSRwZ z`vxvsfoDR#Y?W%ZW=tE`vGHxNmN64i9eSUe-0TS}5Jow@Oro zBXyX>c@r1v0JmZ!=0kWnJ(Y8M3g@%|*n?JGW%jdNQk;Mx@xX7J2iv~Ywwq=<3H?2N z^*g)+AKq3v{CHPoQ@G+d=MqqPJyIJYZLadlCgz9;%y;7lATvM~S2rAce`hCpG z5}9yBbivkQd|)+^SOP)hiN7N7c^D_}P)^=bVC#xCZgKl$9Xt@~ru$g$@)X=HyfU;ZJ+IS<$_u(**wfQ!laZ5qy58~DPw)u5+DI5X)<*vE3+$1+G>YpswDty){o`OzHs`l@OChlT=35Hu=~6fzcCfa< z`##*bjX zfoA)3=x3L|xz$?SON=_XFh=Vyp^**Mb~I{7tuyd|btZ|kAiR9robM>-`&?iTS#`CY zT4;0ICFAG8l!R|R_kXHDoR@9{&R4J1tX`{eQj^X{HDtN4tl{}wM{ivKv~?kgiy*us z{#@Sb=I~Z`DX^#URu?D?*PsV}dvVsrt@Jc!#vPA#B5EfhO|b;U1@X())?`|L9oY~s zgLN!Jw)IEMR#=|j+RNp{-X^;Dy8=J1?Ra=5UB!XJQfTGeLUxjriQUiNwti zUYf>pn#OUOZUZ)1aGKoi+%!`%c0080+cL-{uN>=Ap@BhsNniFh)9l>=jT`uCwC==5 z)?Fm-hVZuK5uCV6PTYOK7CvU@YoX-qekk0>_j7};{Fm~!&~!ZjWx63EMw^aBGS-9m zrS%YrhatQ~?Z%1Pl@s+Cu*GYLj%|{n$Dv9$MCTKioRym#ZmGF>0$Nn6-xRwh?rc+; z+LYq6kSBq%o+9xygts~N=VVoIvYrFBvEa?o>6=u#E@!XHS^UK66pX1+#!wn~sG%vdAdV95C&K zZOy6Qic|kSuopL{zNOU22JPuCjAa_b@r<--5p1Fa{aQO=r=?9)4uyzwiOMCSu^+(H z1-X&JO9v6RAf@9QYuR3x%!e>yeW$nfM2M`9@QL*?iBBNB{P*DeZ_4@q4A@w)h7*s0 zvQmEzeKY**cc}_K3j3{U@2IKz0;)C_-9m_V(1m<@4eLu_tglFX4dEqiJx*G8PTF_C z9-2d?rQRSEB^!J?i!$sX3H9sOJQ|CAB-E$1XuKr!d)QLlI?$z7stQsKu|;d}pqj|w z!9xZPiS+L;lYe__ZhwH*ot$FyWJh5FIs-fB?X*bg8XwDGK5D0}AAz@iBJnc>@l1c@ z46PgIxhv=SH(+`GK%jtY&{gjMW=n>DhZPOM-_>P%rTm|goi*8iz<})>1Ew@$xM{G_ z12?1)GE38L)>s6`7fi!aO^t2+39R)OiN7JdM0emsx93Fv2W-xpLxU3ChRKrTcAe1= z1$)Or5nQGTE`f5Dt}%9!;5Kb%D2!sY$46EN5*;DDeE#)2+d}due$ZP;Is;qysh>lS z*Fs5O7bsNe8s5+IVaspnt6Z~XLD%~3IOqnzt*-dQ>PBJ>2rpSbak75oWUUQsJl7$} z)f#GX^OB#9lCE{2a)#f>d9dX>U{`3i)`cpzEY0j5lgx-r?(RTX>ycO=!pquMoV71G zYa0Pu8d#eYDo)BK{KIYtg z#JSr7*xFocT+r^0nJ4M$1#Q!s+nxtWe)Hs#L7Jp3p@^-9vT~VXXHtj>+kV*_)>e4T z+M2{R5MB=7<{ZAoIouxDVy}h}I4lszVh6a2#k5ce$@I!Pd>)J%G)5zzW*wwq&a$ zb5E#N#}~DP%!5nc?syN)B)K_GrqPnxF|eU7&`ah)uy0R0OcOj7x>Y{^@Wz@N+I6}YerJs%F&@Ip zdq`fGt`+zhj!@Yce#ce17MHJc#i-ou#Bw6SFszZ02|zBJ@E52Y$RS%FAC(%Gpi$E;?FGxR$lYSy6Jq7Hd{~NxBSbA9i?bU6(SYasbS~5=4 znTA&7UpPTbD}&!zSrUy9UiOaS>>bJ3TMTT`{0kLd6-+fjlkzW|5Aq!NCg+v21K1X8K3tBkLFv$3l1+OLN8+aK=smwrIh6 zuZ5DY6QNKA>%E^BimfWm)=AK%`mhn{@FF@oIAGpK>_wM~xho@;`&VrJzj$e$F2J3A6Y@I{mTnH~I)trHPCdef(@SMlDL)u4^cNG+F?>Z;$BpVBfIMJoH(aA^==Z9Sl zuyqZIYazT$PT@@M&6&Ib*qj%_*$5V3Tx`{B$?T1=Vt&9E&4Xs&v2wPi`6g&rr|!6? z{Z-b56A3$>v2Mo4)-5D%h42!)7bkWsC-x3ti+1Wxb1Nl}cS5N;b*DKd59a(Pzd;-{2=Kw2XC7Dk` zx4#3daCs2v+o;2u$fuxlTW4f53Q(+)VfTU^9hPZIM69O)wVomIEQFWPew@&9PUs83 zE-BUk-MYn+)fZtvU7$D2gI(Wh8qw^&1l@Xi0aw{c7Mh%lC9>Ab_|STV#H$cqK6m1L z?#TIk1K8qCFAN(cgKt8mo?aM;JUH|1EN#u%ThOM48D!Fo%_MQ)o*k{il#D`FZ{uU@ z9TM+Ccv;(uv$iE??E_$oHq11)Qu6j8l&WE-IVKP0d}~{+X6_^CQ?*USBqlo3LF;3D zXnjKBQwT3_n{wVZ;krtY^)-oa zAc!mRSIp14bFS9qTzwC0(RR@&+ayOnK$Y4>qdsxDS*aOXX+5}Ey_T?gEx}n!_z_i& zomb!52@{B!h2W`JKj9JUXA-|ac$-gG-h3?He0~S^f|XcRXl*|NS=O*H(%Sah052xn z-XE}&9c3TjIk#ofj5pBnWmL&T64JA-P{L_% z$7wI=0;jWB{+T$~Ohi!HL(N2Ht(TMh_d_N%A0429MFH64o4jXA^9W~=7M~H9ymbWF zDkaeg!pqekzpUaDz<H?8@n+G zuXbwt3(39_k#+M)zD#BUY%b^?|T9Ah98Ycl7*%H=)mY6WRpW!&hSTq|JN!b{(-Q zA7nAUx%skXZ3=5xf_igUVOp2fgBWVmeN#{T$XBKizpqM0>g{aC+6*6Ao0Hgrp79Kh zA8=OR=d5l8Y*AOHTni;}TSFmVnQ}kRgE8Of;v&t~HqgcMqc}{abV2kF&xf^gR zphh`y^jnvZ;8RY&l)wEoAN`?$on*$=M4Zh!-V-|q0B#K=F$lujs-NI&J>+ zseXV{eLtsqIIu;&kGM6fCC!yEBIY*o)*dJj$EC}_@#-MT>L7{}L>Yk^$d2|@`Al*N z5VM_ZGLnpEa8R|K7#qc+b%L%D7>S3hQ6xq~c!z>Jc#FH8x46B4y{7qy8#p;L<|L3c z(DuGiO52u%ZLw%X+Ez9&G|2y!0k@e2dP&(p$HC@wj!(KRRoD__EcUydaXe9bknRyD z;766XFBX?F$ZSd`D3O5njM0YViGWy>NKB?@J;CAYd9hr_i=_(KgPRviOO8-R9>pJ_ zeJYL#px!Z|jIQ~tXm-g1eya}S_cvXVJr$OyleqnHF11oo5N>^a%|kS=)1Z`{FyC6x zjOb?9EKSFg)(jFeA-r^7&gs64(>)v5>x0wX5cpIRcE3^q&hT~LQF?_s*c=E4*eU6idGE@_X# z4z`Q3^+#N)SIP}5Jz}+susSg028L|Z!J+OL*jCf`nW+{;t2~`I!qa#o ztOxdi=3QlAhhbqG=Rnc0X&ld$?>Y<(4L&a}8*v=(vAkrZ81y#nyccR3U`gqbtDE=g z=Iu7`1nR_2Zsqi=#h&SQ5_l^`VgZD=Eg#3*^0B-vXMw$FCEBu2TMdP)Gg;gYC{h%? z4c863@f+9MdNtWv8)0cfa6SsuG8Yn;M{6Hv5q|7hm8qjW04j|l#BT(*76V~5kyt{H zdYt{kcrhHxi(x6Se4ViMTO%@=x&#c!*pWsY+|?9{q?=ONq`ZYV@Qr=?8@tWf!pq#}L z+Hw@8Wn)OrUV(?KBS{d@x1YDtSB)s@XCr`%(wSS)^mu z^IdQ{RkL_LRI+rg7Q3!-cGF}#JqqXdSQp?C>p~J2L3nAM%W0j%X}uKK!+76OgrtrD z)=Q!x-lrg2)Qa$2tiwrKm^$PW^k zG1ozh+V6&6x?}`j=kweAccv!edMIG-Fsu38{R)juAY+SGpKk!(x{<_95Z*dCfs-|! zlXWYwo}gR?-@OG0mhCCuGz>mir$mGc_T)`Z^<1Gaba?|fZdzT5B)fUP@8+y&uf zdn9Lj1ZVqRU=Ju(CShAPOPcS43G)NKWgZ;+1-VPl1;?wG`c^OXIZJ)_qY7^5`bIqU z$$9{vSr3wU2*TUt59RG@H{Pxu1=bTK&+$qkPihxdlp1gkQAG$RQ7iW^f>e%hDg_sq z%`3R!vT;2IJJ{_e9N@Mk@x?*>6d!NTdYo7}U-wy0;K#l$m8{cL=@GP_%1(O|6`sUX z)>9;&rmyp4diCcdS8$S_19nA`-IZW3Ajy6n_GEH>cefZ;ZrHd`7r_fKV@qE%#wR1; zxO1_f^&()_OC(-~@N(XVbKaYC{u;1NxegeN#N0e@Zm{I|b?A?_`ErFK^jrArl)>|arhVU}F4QF&~&ggr<7VUoL7EF~~z7Nf6Rk;OV z9z^;LxFwfrB0qpqMdavsvRYTjP-QrdyVt@v#N|U^tdB^14B;iRCnvH8C-Q&57LCXj zOqE1_2F;4d7J!8!@^Ve&=TO?y^qYjsWmjd>G`Ic&2D@t z!h@d9pa4RL*+`Y-~E8Euzn=*69jQA{)%mfYjBRcagKil z_CY>!1&s^kvv5~{oCm-40Ws-M>w!6r~Os3eixK|_HWc`6p ztv^Zp1>tQK9eIg$;3f7iutnbP;N zi-PuAlpSt|)3~Ih1dmwlNpyhlHh{l>WxKNe!Vh{^RwrOD%%=f_-E#=TUX$i8%2o@L zj6`!^PdUJw$pYvML)raB0iJV9h3fN4WSn2Gi=_*USaX(Ix(i{fwk-V0>Pn&;gqQZ8 zIqg4j+SdYh2J73~=yvoKJjQi96o&SgBe_}|-#*#%dzT9^f%L-wu~6STbZ*pCtOFfg z8ZszUtgl(?;wP&+iS;17EPTyb_=>ZzA+U293xOg`ZH{otD9Ob}&@oQ^%B3NAEY2_I z{$@?X#`t=5qt#SeSHjLxvue>$$=mkOJEuiV9_0D%Hn?4rw*&MkZym>BjKbQ2Q)(m9I6ZJ| zq9$qW2#mE8iQW)i24CR}zRVd60b4Y0y#-Sxhh@;Ly!94S4q5{H8sk>HsGM>SJznj-43155U$e60;$^Okcv8zL+z;FR(>hYHZ79N%B0Hpq3ijdLj>w zeXH}Mn&bVTUHR-zxV17K!=%~@;}ffzLTyj~9aOQ57d9mD3rG=wk7w&D>+DE<#){z)Yd(p32rq}Ha1KxA943G*cE(Ep z>m|WS7{fAN0z8)o^S&LylbZPyZ1BH^!dbVY;SvLYwE#dXO(Fx~<@*@U_tBj1g}~-~ zXDTBiH;=$;vLtyCEbzZr+ZI<*N4-;yGykeo)eNnS}0#vipkcUTbb^{&RE7Ip`!iWx7Cjw%f zMB-!!FRgJ-Ydxp+G+;d^Wwa6G)d}F$Fdb3=j1coz%nZ)NFRimkoDD%dioarw zF3Nd~a30SCb{{smYJPUdZHrR3{!C{Ws`R>M z?h5GJ)S2pXuM@h_LTarm@ws&siK`*J)J^5oRdMRB1GezjJG5-3P`%uG(kW05B7Mxd;lNZbtJrEol_a2%)bHegrXC9}+4$>r@(?|;cG zgXY1guVenUX7moIWvc^hWbqwJBvsCx_EG8t_R#tfxpk4MF^h zzhX%5&-tz3{5}V)XKz94V|u3ffi77xAw?$ScA$%Ex@7oySfbXT_<=4i&ZTuF4|MrZ z^ZEjms(Y$Ei>`d>Uh({aD%N|On21G(zIhRgwtXbl8ULt5V!j0kRg7@93*~}W<4TXt^>$M# z97~smGf4339LrRZs;=~8s&N>;#ELaEG-kuqal1>}Za{Xp9c@?Axif5T*RDf{lJ-=X z9ZTA`S67=&$H~fA<>}I;q{{%uIWWc&`ARXYRI0Zdv-*Gl_ke&mQ1vR@>0?{lS3z!; zcI9WRH}RnL7KyhZyxrF}ype6q8`*onuFNrEZ6yyzlzrYK1H5SofnQR#&i7&S!aOMQ zw%9;3As+|I`he*DRQG@%;z$3G#`t7yExdYK{KVxYw)GK^*2g41p|7AOgg^4a*B-ot zHsvMs8L+D^q+!@B3I7}>_=hwMxR>ETlW!k}yOw;W+5G~l)gqEk^!4lw)H{wc)|UWV zUy=A4!b|XaoZ#-9;O~IVnc$$~Oj|Zfg1?6eY7wceC-UIfZ`>*QLUa5Bw6mzE9%wQl zRlMQ~DEwgk2&nZFiJu|740q!UcjXNK25ga|o~;-yDgGTcu&8G%_&f;qt;Anxg8zVS zbs>*?&z$_1^(Q{G{vz==gqP9|oYMB3(*J-h+J!u(jgrB3UEK?LOhg`>`ButrG-oBy zwyxtrOb^E!?Wv6^^r7wXYpVl^ju2k9{`!Tb2LFj4bZT&CU~5?1EzsmMXcKp>lRR~S zvZ>81cNwC5&5A&2tC2y~ zx&mT#Be4dAm#v>TTR(EP)&@4`+^--(bcYmwVQ}q_7YI|TCibYj3BPC%wK5m%_l^oA08-ADY5)Xbid2C6DLh?%nmSZui48Rt1Uv5MEZF=Bz%&Ssetd=kk$2 z<7^OGb2DEuJs8%oZ8kyPI}h@GUBACH`9olY|HkR6SS?O8nS$9NmJ@dY%-WU2ZV+C+ zALe{N#QEL>*j2Z2nj0(`-V^%$H%@bGp-BBllR6A~8L9jPg3yd)x;~QEvnol9 zfDj$3o^RjHNxh4cIvUs$_)10V0o?|@)=e=reRa+vZAM5RwLk|e7$^97PugnXMI_l{ zU>7611*}VU1v!~P+)SSn7`m4Hr^y}*z5d+?yi9hMAJGKQE={-W?1g8naU{k=c&qcx zocWtL^OJyGh22Ms=1aaO!y5nYqs0eZ@&otXe%(iDNypV8VG*%T;vmerhTR-@!^^u9 zJ?4RAC-^L5+_CCd9LH#ul$6|3qQ5|$tB?tewiC!jj)W-qTxDnXE1%8w#I_xT@55H2 zC34_;ont11RAlNFy|7!*l1lA>qAI6IlyvJ6ehXWeT3Lsz^+Q@b-OI^A>m& zZ-Fy_U72%Z+l~gO?Uf4zr)}9fXTnm}I)iZHZJl|CfA=9iJD`QW+aCYuGz&knqfVJK zLreEwuWB~1)*KRZ=}Rye(H|KAzK9pfg}hMq1GdOVowjDRcazQ0@2Y z1xrdb$JJ2ILhPn;*R!)CKw41}HiVbqvpBH)IiBpM*R#Gb^7J&_Ze0=8&NxGmW#30(lyY6-U` zWFB0a{WRKd*Ah!}nTFP_+{ubrjHB#uwvn=1Gr(C{5{(dEI*;OX9?9uk4D6Cz=ljft zJnE^kSd!WV1MIe6FArXQdw_15*CkNQJbu=C_;F6w{(xBrkXQ=grS)J=>p`5><-its z8r6cqlGTHtpLzBzU<*a+nwr#up_lm;tfGtvXTzAgXJzIQPvtlS&sc|&I1Iwe@Dk2& z6K8k@u*LT5gP1S*J`&b2-yz6@g(81#P5x0Zg4Jl1{%%|aW*rTfbqtAPA&77BR|E#r zobLsk?-PJMGM_oD_l)S2y7epfW1^|{B*kTB;!K|tVGyh0ExavfSG6w)Cfv=3rNbBXyL?d^V8QIV8@7@KRdMDGhT< zF93GcIbw#*lGzJkg1;kX!1G|&Z;&h90PL>L|I%3;|9_wCUxfO{a)Lc!zDi09Oz{xs z#Xwt^khm1WJ3P$d&1@gu%&q|T+~&hW;H#b@JklA-2&3G9XRe3JHhU}C5U+%hEMd5H zBHYHfQU}joMI>&dySuCLquO2VnL}9D;1law64%iq=qBlpoXPLad7sRAzY*A??XLD1 zC@H)N`qb`f&&MuZfdiGk6Q4~qRX0PG|Ao!osNHZJtb#*nZUNl7mBeijUjD{%{>E_r z?gZAe4XwEAOMaG1V()?>ad#fXJa)fl@?hI|S);+*k z_ma2|!b|foPV=6e<_CdYb<<3b#gg8KV1WNL(*rIPubXLJABJL9i`mRT-PhsS3iAly z)}tgIgYeQjgws2i)B7Z_#jeF|ST1RP3Wl&++{QD7VtWhC_S4YsUyJEnZ=~K}%P9Gh z&j4pVOX4{QFU{qg=DwWf7lB=Mwb)~^r1vEl;9rY9;6m}brRMczC}zC2)H_+P0B5~Q z;xz~_uRC&Hci_Cf32c#hZOLNE>sv5@@!Ar&P`qxfd3_s-*KvD&>9<(#;J4PhB;JGY zvbZH@u@`6YLtyP(LwRjZ9!=vUVIM(PmHAN~^!T~}+iH3~h8mUSN)y#7;w{J|*!#2ro;UaF#aaEPVlN(Xw1k8zos^Lgg%$-^AadP@HYAIr|FQ)@Itq#}W&y zuklOk8xr3_5Le=_i21C`xmt&F^#iccg4Za+Hp$VCP&LK)#N}q?QonZ8-24PBJsmC1 z*+5QaVaPe-=w~3TUr784;jL5_C#nl4>JMOZK9aA^rq`OGlC?jfR~<&~`#vs(E9I4! z_6CKkBMPe{3eHV5f1%##^*!t!rSMR@TSy`H>Hwp z?b;oab08rj_rQ8%&GJ6N5Ki1K8;Db#eKVz;Hs*~UyDuS|S$o)|7yep!UALtPT|pwF zK7nSd15}mltUIiZ_)+CSyH|K*tWx~m>O`V5Js?5__`m4SfB%{7S@;b<=sgQvfh}4d zG&4`K)(zTJ9yI&VC2FO*q>?gC(i%{-l~a&B{}t}O?d0!>6M)wQ&RUDa+7MpSzUQQU z$4ToBY|e*P1?}5gF;|kf9<=MTjAP;21g0^uNJboS%-*d~q?T(^*N5VD98$%8<-Ib= zgtY;FYi&qkBM2{rpK}U7;}mWRY~ejq(>O_359q2gKgxq1zYOToiq*s5>W$TI7F|!& zHUIM;jnh!wdnh);Bi805wt(;siXZR>^geGuTLF7P&Vyou&La*7xQ>E)V?9LT2X=}J z3*)r(VzTjV4LkjhhHU9MZ_CU(gKirlbAax=w#AQYOu<r_+}aMmv9>3%13^6# zpw~I?uW{ac1Iw>qXgzNmx2=Z~cDAfv-|~T!q-kbm)7|RaD9KqL=$OKP?NXw?D2Ovr z9gbs z5`7`OJU!2OdXDo{0j!VH*3xa>ndT>!gtZ+FSP6>fc5I395|Y>cu&Krw2wHh#mu*U` ztq4>DeWMmbG}i;5d8=qLi@LD0YVUS2ZwPK;m%PzgPj`IK;W!FBnCrxxqh5; z{TSzZS76U*-WRmQwc81_l}RhD@?M=DLGCejEz&lFwqHo{z8mbb+XlP5uiSk~yK35p zLa~3O-ROKK(a+ZIfLnWz*b{=-r$5q#zMr#yA7{T3*i{&5_p@BmJOYOJN80_KaoG;+ zbo;Is4b^OqgnkwgW<$i3@RDRYpzf8sD~!BZ zd2dyjgkvqoMv){#w*grRJZ2?Hq#&rBiN7K+dOUAu$MJTS0rraKK6T*iwQ!5`>m;m; zMI+L>*7m6dd_mbTv#>XtGdbRt8fd2D(^9QQB6h6q{}$rMZGCMK+l-uo5d-rgK&{0j zn&>-(!;Sxo!a1B5&SAW84gj{uM?Ep}O`|2@OJM^$>ZujHm*hYh(mo`2Eg7c?J`lRq zg-o=-jK3q2k;VqPl4Th_vzC)M2*S(gft=B$oY6ypE!u@lhKZ8D!=O=J$YcQWAk23} zo}dXk9LlzKX8x`t8XAcktU_bQi(R@hm+c4utraAWgz&Prkh9mw**gZQ!8$HFTkPouqj^4w`%Vwshxg2J3hrtP@C_2;n6(!3k~Pgq{Ly&MqTsg1PNM zQ|CyCO%JC+^}N_eBO zz|k<@A!mjr={hJ{(;0H)VQ<#;_?2}7i5nrj{7mHhOyK<70&I1$Qm&+BlA2qgXtKxR zJXrA!Gwh>TxeYqhW(P_`3+dRx?fAsHgT$Q>UUEipaz=7;?g6%Fn;kp`N{;S@KDF7w z^Kl+j`BtFWnyUMt%HNBo8_uwZv~@qA)&nFSgz$2=JLhgF=k5_;SDhDa8ZG&J z6gK#K(I!3*f_;bGxtid|pnL8A)82W2M^UtKJO>0=+R=MedIfL%ZqpW-p%~} z)632_b~r-9?RbzG?j#L}36^%_Lun5&zrqkHU4O0yp$adhA1~!z`0}%=@vjPo$YHu} zd_|a~1@QH$9CvMyoZ1v8cCu#s5Lo*-SKR8zKPIw1Xsa4jv5H?6zW`fc<)A7RDuXqh zr6-eTKZ2pVM#)aXHe{Fl0emPOB<2u|I;Z*Y@|5G{ISSuo+ciq#CW~_nLD5~K^om=Y zH>=!jOq=5fh3ofnT^i*uW9bAuq?5#)f>8@qoENGXFVq?MCUd`68&_Glvk02&_iEje zprUR83}h;vLy-E9Y;>*8MxeLk^yzF5kj}$VxG`Iv<5|q&GafC7@9^?1v>9PDa#10NexKnz9tI|_q{((^olbRRCn-}H5THXVJL z=BW__{icIX<|t#*G;oyC5+lK=wSLTN{fO5(1APCzrb8WNS>lX{fqv7W_I_K^I+(PX z5VHPRb6le(KXO>I!dJ>nOcofmx_5YWZ}aMAhws04)|@8RvcNeI3H`I?G+%gI8uw!w z=S1Li0>8l^JYWfDMAGdsxo}O&O-vpbwWim2O|SBr=7(>xP2k6gqAXwmgh(gw<2WQi zFx{rf$pkBiz-WJ_akwME7EbRzFN7;nVPcBFsO37x%XOBQt0;Vvtv{oRpe$A~gh%@` zs>^Rnsu(6!aRimQd1Z&wb?T_kz=7oOQKb z{&8&>2^3HD>Wx6jKdvpCRrJQSaib@TR1TrFk9)~25ZR4cMPy)GsbXM|U*$^G{VMoX z4YUVVA_H6R0TAfF%>@5#CQvpL_#m%kYB{KVzi?$a+7Ts{$7fOnVtirLWn@2JM)vV# zq%wT_a9w}7j3l&CfIM|s*#qE+Dvyj^-KRP&DQt@^mH<>Sl#7WU0&J(g;4UQcFNu_r zph}g3D%t%i*=&Bn)dH(mL@AM~5bi;&DyfRM^yXN;BMr%v=fPEjhg6-I8sw|^4f2xL z?|1Q%?c^n^1>a=5IaW8KvU0T%F1B*Xq*(!oggottArUyOdHbdr@sWH6LVSAMu3mYA5Ax-Szk(d>by1-HDN=!Ex zwR($r^}gcO>jB??Z-AEr%yIli*4!3dsi=5c#yy_2A;?nLM)rfUd7 z=C+}5+iA$`aqIr}s3=TiIi=q4lR}B<1EZF81~2P$Ue>VALQI?hMj~M7z1#0iN zCG9vS?Er-AtIUYg!)%*I;3yzRB$=TK#bXNTyb8JBKMJ?RVcV%R5MPr95i=M@E%Yc} z=udc|hr&1U=SvH3^HUDkO*s0p=pP|A(TPS+LK5gUbmLhP3`0EV7=hb-$erpx93Ilg z#EgJZt38xgdkC-gDEKDZ7(q9pvaX{ME*&H2y1gw4Co&1gAjpF42Vlk|ASN&jyAim$ z2_J{xb`fbTe57&2dwsW9qH*_YQdoY!*(eEG4y(10MZHGmvLS+>s+U>98iUadDdcY6v` zYbL@<-x)`zItDoF+njc37Cw+>6Eg=!o#*VlMnSwr^Woczn-6(A8gcQGm05sbT5+Gc z^$&0AFd=(<1f8Vy=cixiP-ZP>0fAiu0&4(-V;j57e3%X~R z=#2;b5pL4A@R8OKvld3(9<=1kSqr|Lt%vWYeC;MSLC)qYG3In_+;^P<;v=8nW_)^E z{0MS^`yMgkHqGm?x=Yy`o!z#9=ro(vYa8*lNSxMO^@wI4*A}f!aFc!@=11~<*OWT` zb@lZc@H+eRI&Xn*|F_=mCKy{;(ya(QC_!Jhs=_UW-sr=7?tgU`1`GeyT}s`x4VjPI zDX%Wiq(os4seFK=v>mR}&&2G2QCDH_@kOg9U$lOKug(EG39a!NRAGG(qXG7Sq}F6A zAi4DIM*O&4^zjJbE`e`Uuk9h?&1d!6uXtNbDgErY3je433rGlHX9(ZI$>0sK_V40r)0*@=$c#6@QFng%2VEy@d$f3cpbuXIaS9J%q5i zqu02_F7+NgRiF4Uz9bzX<|vF>=Q6y`rForCz;_JaRwqNBSSbFo>L(GMD0ho4^vxvb zuRDMH1=If&Vo^Xzdu+ue!yr6ek?ipF=@uGE(m*;57wHdT&cLYEewSDK9bWD8@Qq5Y z7F$22vaS~paIbiYlAvNh)v7kXK)))!)hkuDSEyDUMLV5k5mWIZ!p!DQ%VzDBiB9Pf zE=ZS&xdNlsE+4O5US7NF@J;mcVd4gFEQ+#dHxObc9e^ZArJLavGpYVWNc4Gf`jr!I zn3rzCOZtnLTQF+fvhliQ<#oFY-$bu&iRcz@u)$p4~TgPqZTziFKRko)F<%$_m*JPQI>UmiWulG!Kl5H zAgyj@UCN~W2O(!t5+6GkoDNin&+wV_oR}9dY86xRDyHC7d=1~gOt$&Z0;+6yzb+gw>rlN!(^D0TjFNdRJg2g?jln&RW^u%O`HkGB#jo1VxM9K>+xWH7oA~q9OukKs1YCxsHihlAvvTK;Y zc@S(3cb|akpz@iZiQN_+-P^ynJuu9vp1ID8?@RfJ$q%E>y_b3EFY(eBg74ISua_=_ zA}2#(#B6BN_23goa7|0M`dG&js0boN?;CKPGQ`eFdIwjecZn$qqn7>;Ui#C#^d;b% zZ1)YQA}9-565-MN22_`mAeC-qv7Sj)3PEu@Rk=Q2OMA2}20U{9A2-|<+Se&n z#5JiBF_mG|3jWS3_#3ZaRrn@)u#@=d4_6dr-Krr(x>qs|LlOkj&3T)cVAT;A6^z@M ziN|P1Ni}dys!7ayFlxbe@Phr!3swid$tGBwD9VD>MTk_eI1X=1upgOV^$-~C6uDMq zm809~EoAj^UGgWU0Spn%_2+8Qf8<5`ffubYeEH{MC(xj4Pi&8pw=gB{q;|S(%hkbb zf+)~)Z*{=jO1|OA>_0Inn<7NIeJReANqw9N5*{iwgNM|dm=-YV9Jr1bb1g4sYxpMH z_9fkj%K5Mj!lm1nbluzc24#a@=T7a~K?W;XKV)pcdpvW5L)!lPrN?6o57F}MdQylmk%F#+MBfz9oMT=LY? z+tlN|1M2>_+2OwhLuJ9xhOAeT8>VOv2E=nk!(DrYaa=5f?(8TZ7yHd=I~`L z1ilOSL0TfWJ;<9LR7VB+M6pPz&kc5$JzsvIC|)eN5cWna!$g(fOCz2PB(gzMr>iW5 z5*2r``mPV&7F22s*JH)#S|L_ig6#6NY#4l`aANwBFQcj>FS)v#$|u1TJ_#b>o9OfV zMH>%;sLHbTL&&!HnbcwmoeHemjo!_Kj6$H?eno-F2+4`BNYTW^z^HZol-G3}uj@eg zs+y7HT_rS}e{gjf2O%=tenkQ5Bq*;Ao>7;9=wa<(m*b z#FwNY#0-T|Yd?b5{$pPI;qXoF6j9T3&Ufq7Yx|89HJ9fkEHOiMS?_Z<5P?eITy4n>>S;;8~ z^nF8;Bq*o540(VlHx=Rexm#PVw8-b__%ydWqtVFwbcnJ=I3pcV(LTz6A|xvpuf)y0B}5^sJ{yr5m?RaFkRrM@_aT-da}bvjN)Dhi z5$YY8ja+w);g&L|G#Ad&JYwdTPXimD2C?wvr&WZKKs0A36lYoSFA#-3f|NpViv=w#qP$7-IW*n8~Bd>_cDAu0J8E+5g%t_ z*^`h2y4m~~OM+#HhTh434eS9iA<}YOl~xe55=Jd`J6`Ixywu;q_g^{L&lO2o&NT>A z?_@uhOA=($&ABI-Y-!zr0IpwoYoD*sKYD3dBbAiEWDS9R(sJv4gJjzDsZ=#OxdHWTv`3@JLU zKiAA1aI9|;4I%h-0rD=0x|cZqwWUDrPo!Tw;i z(+<3?>JFP5`KnKlX&BKzG|CY{o(|N>78Pm>2**aZo%ph}i>2BFSO;`)<`;*e9}H$-c25|wbLjqrMiZex3vrOWS#O(EUbv<~QlCz7?n zak|o8I7$16*$<=E->vai1(Ifupl_Y4R+xNT7 zw7HB>=)$nS1CKuqBu9rheVX>|8xu|HQ0WRhq^rbSgHa2WhZib0FVvs#O}2$$-H6Jn z-9)%_VOZDgZAo~QN%$9nG}uvuUDy72_>puAF4Apc?!c%u%))D!nb+_>d=tGYoVaR` z^Cml}Nn~Xm|3=sbJBk#)BnYY7qFiS}K0uiC4itViynVDSFbs1=IP2;mT%4OL&o&@B%Mk5%?zCGLbfxvUu+xP`XT{^+|$qy7}(`Q|?`a z$4#tp1A^9(awn8Lxv*YDgd^Iul;u}&iVv574#XQA}d6E~i6nsD78>{3U%^O5s z*0?m{;?N&k>N6)ncD)Si{RpyiV%Lue4G;2Z-`f^t55hTYPJ7>g@IkHc$WWFFSXQ(97xq)uf?k%HcV*9q%X7^b96Yf0;;O#P}SgA}At9E?cmn*4W`#AR<3HgCNS5& znTm)HH;&N(RhO_NZ}+N1M0&z1x5{|Sl{Z$boN=C(M7Mw2B|m&aszOXv@>3-1<0Vg3 z?&0;`&FftQzW-w7)=2fZBo=wOa;u5B=vQtAUsFpjv^h+#a))zO~G(0C^lby@D_hzWN% zeL`P)TY|r2g10~fxCwVI0yy}GZlGxiC#e-NtzpzEf6J@9npe3Ue3N;?T{pV2vh5K% zH{q`9`L^VI&E)KWP|GQu2fE_zquR*W#jiqje|uCk?t~1qMPst0BfcVaBBnEpTHJ4V zahLGoc7t!?v#{va7_q3!LU%_@A`^w21le_a{TB2*&ZdB7sozH&xLmAWKc$bA?Exq0 z17do@5TRXvuD(YsFZ4oQ=m7YtHtdSdN~xDk!yO?Z7{#I6VQ}AvyZ^2mds*v1M25@M zx}LncZ*bp-B_&fg2%%oqSxc3{|LWLq6F6*B4$=1ThX6wOo^VxhC;)MZq^& zj+{v-zOsT&1Rt1?YZ4UI?Qo@Gibf+?Iu*ySw_rFH7!wtR?z|KO7pXrn17Os0j^*VX z!^=4szR5Nfryo;U$PW=Por=@i%rOaC>gLGwOv_IYXdc~yK%Va*jlyMV zG%;gf)G`j_WgNiE_$ho7y`0JM3dqP+My|(LyN0jh5$^kjFmFjb?~D+S8?62}IV9io zo#2#`G7Tlqc7+CnhKEKEvREwNS(KKHuRa>vBXCnppzCRs?d{RMe7kpdr)$EBm*tu* z*}H?yiE~!Simf{v`1+Ci)kN-Ci(4V}=;59mnt)7~U>9v7oTSf)nFK@1k?YUZMT_Li zk%KQsQ{g*-A3G;!NpP)~HHu>Akbb7RPcG248kVz&B@n25kZ{x)Yc9^E33lha8Ha79`OLtgF* zpckJbd-6H*OZf6DTk#Lk0$gDR%3(&>qXSXf;oOaC?&q_(?+LC@UMGffE?k5_o9SG2 z=Q;A56-DaJh?wwjpr*5AW2N{j{5p4A9@mc3M;)q;tX&Lu>1$$^z!1&IOP=TL!t2(V z*KHYmll!*31Y$00xf~G*ch{>4e8;Wu8?F6&=kUBz{onFc^7T+wAQQe5SxN))+$iShi?KR5?7rFEk`VS_waC6)~$})U9S4zO1$8%i3D_zR5Z0{X?BGws2>3 zOi-x92S=d0o<*y~jU1;eM^3%0MW&h(29k^5I>gVOu(P`CC3#`%JEB}JR@<$|+jL6* z7Du&7-{ZZsftZcNkyK@@I%~{J+=!R>NBH(kuDK<0f}Csgv>BnabjQ^#h;SD}_q69c zOpKop06h~ZPWOh}1F{8P(pF-&!KiEeI=n=+d5LzwH_^L4MW^2kBP$EH6JgUcfec;U zathb&aYr48yaO??~Mbf9U`*2Vv9& zx;(G053lYK_|DS~?C>PY-l6uG@;(tUA@=C<*mD|24xldIm+c6}hzFx)^#L%p0NfvL zlXs$HPpGetukQIvTrWhse?bK$r@&FfF+%)H?xc{TAksb5O^ZS-Esh}udEGJK@__4b zZs|C#ODBjq38T*0C3x+N^V30?Z za%aDA44A8lp!Y7Qy4&aQ73n-N7hu$q7UCr>$V++|zN)39Gr!e=qrz;z6NjUIx#n3)S~C&MbF8L{ug|cdt*iX5tsG8g?Mlq zE8_pk+mgB%llnG-k9$}HX@s%$CW>sWa6Rs~ldF&EFWrH&beEWWFlwc(ywaI?r60gI z*$-8Lqs9&VGTy#NP@T01 zn5QsmsnhUMr{<-84qw#);>l2xh(upj{RLvvFLB&S5MQ?zFU7=viAdy9y5;TcPS;cH z@c?VP>xs3ma8Y_qjF&a8%CGNncSO9x8+J!TO8AB+wsR-iS&kb=S;|xhvYP=#5;W7z zuw|HL-Uuy=5*pfTjoXN5r^WapEE8Rd@Btl6KIjr94wT2g0WJk8;luch^W#PIySUh{+A3&Z5_O zv9IxB=Ywye7hJ^)bg*)xtB*UPvX=P~F1>$Lmxq_|O*We)S37^uj@Hp*LUH&G%1WMwHUBWyZdX6X91D=-QCGpcc}0KW6|D*1L~m#lt%Bo= zuPo|&2tHVV&aJEPEQ4-et2)!Q7DA@|Q)R#g^MWFXFPA zEf9}h@wvGrm4gwPEv)EUtxB*Bk6rS$2Uo1*8|0b}uf;TNi7@Gr(fn4T_L25LSF>Xe zl3Kw>YE4WV7lHUK==;hhN$ru`@U>Bfh+^F116$ugB?+> z9%%yW2ij=Mx&|Q@-2LQQH@BdqpDDESPFGNWCa4`ja(!j>U=DLf^7(Q;>ajpDz9fYZ z(;G&u@l0Oh&v}i*;JY{}V*&MmHj+h3JrYRt(AI!XPKt0umOFx5NEdhNxZ)yGCF?eG z4O!~+MJ)8TySH*gC>uPb2)IZNVj^MGb;u+>Ek5JZ!U^9*ui=Pyw%i9hxnnBp8jXPU zw!6FicopAd#M_vu7=tiVE4}^x_-|OLs~&_VRYm1;?Hw3` z5Sq$ybPFKdThiS((3A-<6hBT6ji6^6yJsS#k8oKUM$B*+bru@NYw{7V$w>I}TkGDc zCfZoa+2<1kN)L_D`nZ*Qv!=W`Q*IQ(%jupD;A>=QG_FZwh#3o`&PoG#+4}RcjfXG4 zM>a_<4Z56t9TAB>zsQx-CLjV`^^x5Az1i7BEt!535t#lK3x9_rEY#k{fu{@&l0Ji* zG>MqWFzOuW;H8YfW)1lgCWXjLzCoZBuXRga z>+j&p4R5CKmwMB+P zt%~|LqG%#0EA!7*Di-g}35eX00tXjEJ^~zN$Rjm?Sp>joJk93xIi zIo}qD+RNMdu>^n_?jXBsv@frJlD!yYx2jXxjW0@ji1`&poeit- zy87|D?uGA4Z7rGb*4c#aGr*Fp95L4vSY^G5?<7#lsj?4|?w^EjyHkrym|;Af@D2ps z&UX)%TKf?by{AMsaX4L%K|6r!(m`Sl!Kf3(hfkDpe4-qMFTX=B{<^`beM)q1Ie1hO z6?`gb79H?ud8LGs^%95jWNRhPvc$&_1)A}7oZL#vL5N7HoAG-xDUTyWdQdt!g|wwD zG+a7?52cgDoPtqT7R7n}it+lLfp4-MluqL&>vR@D(Sy?I6}LFTm4a@|V`JK!Lnt(x zaT`Ng+M{hjIHpoMkL%I}VlKj{Wh%(aRDhT13Va>ORj2AiQ&#LMLhYesKOLteh^L#e z0-1Q%5FmXp6S+GFe;8`YYgkdzbzGHh5c4ODTDqLPbUAqGZoxO%9?YbPq%7QRgh?OF zq;Yv$ve}tzcMu$XMz*`@lW(gdH;4y^I|fL1;UwK7=01#Cy-d7%8F}>{!Z*=}^omZP z8pTx>@ezWiPsBFzd|O(EFfAV=)OWObzG2_cXrC6LA-$sq*ol>%z)yNg%s(({IaBj; zdh>F=fN!FwX+-7ZifG*E%8I^3=*sRHY@>DWZHvS9wnPnOqP{}F-0B}ULDJ4XASyK4 zF1?0_aQ)a}89 zF%?rI$ec85Dm$^7V2n&2V3Y>eq_o6HFlzlC^ZGsF^~(U?uw-ji)KQdW%ZL!W>N6xk zFx}>)FB2>i0@Gj5mv2sLVT%Zf!F^_u6^>G7VzR&x^<00hjlOqy^=|X(WrwfoaiZ~e z{`#`TXPbMEq-*KfCtQh$$Qm@C)5yBD52cU=&VfkjFY&9H-D3%8$$0P`;TmQx|A$<^Nk@f>HYZwp{7>46uxQvRALqhCPm>-eK!%eC{ zj4zC<=4BI^`*|(*@mf}fug(eLM$;iqE*ds>{fm!DG;rzy&RMA9o~C2d#29~b-_!+= z74}1Xf)e!QMMiKUgYlqhm4m8R4-Tl{TglI_QU#l97HTBFr7U>WM&9F2Yf4~pSE>VdsV*_~VAOTk7QTG_#FwuI@J+@OWVA=exEs_2faC($ z5b@&XL}r#w5+zN{xtsAF}$bG2WI^Mhuuj4-O59kxz=p{5topC3bV7BA1%L zU1~~9Gx9sAEXhk=6 zOqfVciB^bUxbSz}DIvTQO?O&zC`*Ob2%k=Cx@NT6;KUA}E)5)kG2}_QQX5>C+7i>c5oY}1-L(Ui69giz_UrjCZ6NJC23m%oB{A9I)5gh-> zd3yD2=`@n*6oQbr!;HC}lIt+z-ncA<64M7pt=0@)t?9g4ec_wvI}W*^6W9B5A7&hZ zaJj>bxnCqcNf1x3zh@c6#B(4#I+BpZXU-f{O>xs8(a zz|;ozfS3?zEc~Q##C!^)&T%okfYH2w6XDD6=N4)|xw=T8b~B2xoc}&U1nddpxrG(( zj_B5R6Pd1)5O5CGm*npUmL}tpG=-R{Fls6L@=}KLQqF*HpXBO_xVAL7?^t%_!p{+4 z7hQrRsHIzQCo#2VBCIm*Wa4vx`g{X<@3>Q%g)d06iJ1eV*3iyt7{qHhAHE~`5lAxR z#{}apXUqkN3U~fpg5OGl=DIm_3e$WcVnDlnxKX}MXrw(HM=Lp{SX_|4Am&RLwYEKY zZQtj$T@2quH^)47WF%QHbq%N4wnvmkx;2N7qAcOp2$A;u_^U~fO1CYZ#-v(;kkTtf zfvmAe-{1pjDKX1nh(xYGS98*lm#70T(MtICO0FVI;w9^{3cNCz(}+Iuxr?d;H>HjEsB&qPWQe-wuk*$aeopIond!j-koS}hEX&Wv} z+ll!ZMy+}+UiJ5Q)px-+*=8KHv6NN)1%c8T2dz&Ml+&$G=Q8DXBRtylkQojPrjWS? z4wClZg7hmfzrmXLE$T7ev9fX^7h?v7LYSqf|s+HwcI|komxj`_&2+J}aNBBVr`X)hC z-M;2RCh7@n)8lz*UKm1h|%Ms=D!7e809=;;oC+2S$b%D&t zYnp-A^bvf&;Kz0elt{KwtbaUDh#*nw+duG4@7Ykugq?GW^9SLr(Z6+r+dwhO(Bq5FnkHR$q53CO*?u0XOgl zR}J>{4f3mCt7HRoI?HONR&Ioqo~vY~JorG$OH4i(wMJKXjV|*V6@>5GpZVkBB`Z@1 z!L;H&b?bo}$HnfK*XtTH59$NRu&8C}1vQubkv(s&-5)*JWk37DRqy6g4g~)A zUZ0J1qL$ZK{bw!fj-M-!@85d$w`;aJYhBIWb=C4lT~dCsb$;~DOCJYq*mtS%(37y;6OTPckV(cIA1yh^$xYo-J*C98vfuG=lu& zdM2*avz;9^EGklXc%{V)Usk=WoAF63K1xuEG>4vb-nr`3y+uBsEVHh9neopXFZRk9UHF*$wId;bidF>L3>0huTLl4d~bQa37Q zntIdw)|DGYwk^JU<9^WlEiz2ozI=Ac9sy;S*~=DqcDz<}4@bGH_dohzwRPv`wTkEe zG^@Wocj3Ov5%)KyWa^)Du0PcbZHOu+#) zCY>8sZBK!tDSohTDqNsf*V>=&oN6yPcHZ_n*>n80zRrp)zN^w7skG}(uOcDkX6C-> z`^~DKGRCGUU+m=29~{40Uv~ZM=xM(zEvipw=%41s<(i)q&t7ZQua7<->6p3aN#izG zXTBeFDfhyL=N^WYE|azK${qGHk9MT>?y=N*jY9cut=4H}l~#V1>k3p#)Cr`t(Uw9m6lr^G<=*o{UT}l(q4ubEO&FuCG)nfDzi8PR@-cjKZ@UdQJ2Z}_-O?V!S? zPJEMLN82gmI#!&}?98XB#=d)Z^0x=7-5mPuiBiA){e7h!KWs_+t*>R)_Oy9sY@b|e zb4c51(XE!xcQ)MkbySyIxejIB|I?3azx=q#(ET@`&mXyLnzdr)I$H{q%2L1kuIRcc zc3Z6!s=~_F*VcZ$>b51b0+j)E0{^n+6ooRq!QeNM_%rVzJw^M=_RcsMP+qjsW_-I8(OdO9s^ZD1LbQ3RaF$KT-{4meH^x| z)mB{EI%If<@RW;t@9fvKd-#-%^RG=m*CE^5Zo3D2b*q}c(fw{4hh;muVE3}QKP_B3 ze^T3XYfcWSe=>99Wm!h$IrVYPV>4?{*mG#;XCHhpy8Hfswx50#@otmTJN~Fr?c4No zCO%$}rOTC@Bc{~slYRTVG_M-hj>)or%JvNpvvfRQtwy2B?wr-7XoIQwEY%e#(%T?^ zEK}CT1(qpG(cVX0QB>12Wj%_@GG%=Ql?=`Km$iwDwIO8loHK{G*F)^P?{=qvd2J8(LhZ#f|}(qP_s2qbBv&3JqGFv4b+!9 zP^4^Gmf!;GR+gsS%B7;HrZ<7hC@O0Lm+PQ{)XTcYW1!Y*pw=l+=?Dp4clvflenr=u!*UNfS6zY`or=^AZ#grXbs$TJ#&FaOD_Rl$@-{YR!p1*grr+s2< zq0LLW?XDYg=(EAk?>8Dcxb3_PMaO6BH#1kseBYftdh0~qE*W1*SUQsC1 z3uZnF#R_JABdB*op-j(y?@}n1{fZhvmG&5@G8(9|Mo<+!2C9+0NEx75*bf-{EnfDbaO@}Q&6w35G97v&99u6{qvV`IS8}G4=RAC;28m>X@Yk+EX zib9!Qu|`uURoHLCG*I)6pcZ)y)K?m)#R`15`I#DRo zJ5S$HDAsveZv^$DD3s|{`eq8ns`Q_XpmvBtnV$W2QYe=Fb{RqaE(&FOO6{dkET#4t zK^+l=GQCV4rBJL)9W#RZLlnyNlsZG9SW2BWg1YQ6P**fiSB;?l@))RF8mQX}l%|{X zKorXK+V3HSVzu8R1&a14=+;onGhEP)hhK=InqJagQdCybUd2IG7S+70sjwU)G)ZH6 z`gtR!uC*hUeyQ_<-SuQGhYR`>#Xj^$*hF!8jxeK)l&o2OM%is<=3-xPJX zbo*tWrke1r-TvU{jr_U0bkCKtdWDQzwzvJb!No3t-h*bmyP)XIu?IdIoVxt0XFV=t zjXLq+lrgLGmub-QuN=KQhd#^f%+dTx%Q0boy#v~pUV6eYv|M9}Pd9qWUeXTP!xR!~W5lHH>8WgRXGWqPIZ zF@<84$_NEYQ~t(!4AeLc)TauRrly=M3T1lpJ%vKC=6k9FMN*1SE$b{%DATjwYzoD) z-y9B#mM8MBHP&OGzR*B@X$19+D3s}4s-+Z)b*YvqP_)-UQ_K3TD3s~hZw-ZF*>9}^ z#g`{n_S+~5WqL|&qEIZQelUXCCJJSG?YEsmvD)uv1&UPZ_)qq-?8ZB7m+Du18VjfY z|IO3CA*KX~ofT;L9dC7K^$vLq)L{+O5hJKmqEM!nw9^!dm9#&Mpe}k0)FlnnWh1CR zJqGHg2I?;(sQaQ&rng>yQz+JYJy4)D-Q0gfp-eAR&nOftQ_mGBO_OYqJf%ucftZ4V ztI|{A6H=wqlw#Azk|>nvH>#zhQ0zvv^a>Oi50gJKr$}DbEV!UQC!Ur52%8hnru>Me zTbTzJV)1JUw&14c;k*=z<>7n^lqL@s5rs0nwt0s_vD)TcBdAiMP^PC;X$r+ss*Dko zug5@D)Ie1-f~qbGW%~Y~8Wf7{|EXyNRZkSk^fFbSLa{RCZv@p;6w356)r>;1GS%D& zs;wxL=_%EYLa~%;Zv@p<6w36J>PDehN_97avWY^OUQq;4C{|Gf8bO7MLYbcZ`cNpA z{lbi(`gsgglm^Oa1U1NGpayH8J~V>**khnZXrM+KL5=ems82Oeugad(?^+z4uoD3s}q?^+7Q8sBwBP@6mk>IV(fk48}2JqGG$4b%=Js9!~)OfOTv zQ7BfXepjGqmCiP^9r75c!y2d~3Y4byJ0%KbdPQ-XLa~bCk2p{?#Vi+aLAywK$zxD2 zYf!JmL6v(M=x5v%g)+UQ{Y9ZzNxNkP^|vUL>6!8Yg<_fVp%K(GQ7F?>>N$mCDfPk# zDg~BSVv!jWTsAPhN0<^Zb*&Py9$_kcLRN|BS_oM!A}?z?Q7F?>Dm{f_DV0Hi(p2+b0euU;>IR_&Tm&S!yy!-zzm}Mvw zE0|>!C`}%&C<e z9s?DmfwCJxg^5C$-UAD#P^<^m*9gif3T1lr5lx|3^$}wP^`XZ=4beaiHG&%HF;Jgq zphg)%jTeP7y-A)xp;(hVk%Qt}FzYl?DAOy7=@g1p6f-y|xiXinb*?Cs=@rF13dJgl z`9@HSM4?R2eqT{2mi-nhP^33V<`C%1vJ4lr{frf&sHSJil@yg_%2f&~U&;us^*d20 z(=+9I3dJ(z_eM~gJqGG04b&DRsGS}IwMzr_ixJdbkAd2!f!c2bb<|^^j%lEd8$q2B zg)+VNJ4>Nh?RU-y>WareUDZHcGlIH>3;Gj{x9N|tiN-t1k7yQt`!`XerfQD z?yZ{{Jq9Y12Fhv#l|vND^tHB}6pBsh=Q4sSAPQxAx3VCGV%^F@aiG}rV^Lht4hxEl zqW+VoRl)DWJ}MTo>`s;sE*}1HyVulA{n}iqKK1zH-v2m<-q^Hz)wnVN8yEFGbZk(m z*E#A1_sCpeXaD0D-ktnO#Ix&Hb4T2&J2Ugk^`BpUTD9)#yBQn!dv~oGGd;?)ww9o%`R^IK|&Mln(8ds%%%p-iv-%Tp*;eN<4OC=lD}Q$-ZY^h{ZmLa|I)O@Sg~RRTsE zY-??gfvTf{s;fY08tO(K1Jzgq)x-#@l_-?yWvVrWVr8n05mYBpDAQZ7&J>EZUR{i! zJ`ja6J*9e5D3(&ajG%%=p-iv+LMRlg{dyZgMR*L9Ljx5V2a2{=mKa=M{S4NlAK)>l z12w3F;-Hc~26(!=$#E)j(?y`uPrLa~ZssRE_x=B^fnGQIQkErnv8 zr!_`U8$_W@PpOR*ilx*hBdD#SP^Q;@+b9&P{k9uH?G}Y9Hr%@TMc@}hg4d;7b|Zbt zueU7A754p>rz5xcJ4)vmbo*q6OSRAE$Xlqz?U}1bF5fpRYnoJrj;%div+2l2FJ7E# zn)z7yV(o`C^WR@*ORh6R{jdH0N6SfB>!11lr@38IZ;3uVaoNzQ;s5lj@F4dW;c0%j zpL^uo909Yx8uiXU&n{KX|G9nFs(IgA_fV)Mhwb(sb{VgL9q7l?}Q7F@^^cxh4Rq1~kLEROF zGQCXQqfo3&-8X`I;xSN9HBkQ;LA@4*GQFbk$`JQ>Hw!+|UG_boNX>TWpfwRP9@4Gq4T`+Rx-dEEjR9_U}J^@3|_cD#3ZLWNF+8f?p5qHBQ( zZNpNIx^|}G-$UzM@otl9SMLeq^SyT|VD!05r@tE*y!_=euU|?RTaC~ckkY<4~ys9ICuR>TY;(}g?n@; zoAXz{+P={pS3J&ohU)%h5#QLJ8v(;QVe{jXiS$kFaetfp?vhA-s^ZfRS zbGjF7+B)y;4re|&k#^z1Q@&p<2w8Y$$fPujvle*p+0R4D&Yt$o)B9D{P8-;C)sfP7 zokbUKxH965&-c@I&zjUL`i4);R|O7Qx_o%$#FVsM#uq!9>C~!q)_;oJUfpKi^e5R% zUKx?+hw0XynYY>M7udEf^@W8u&+W+gclvVK4wilI%Kmj_99v!%t3UQ=&zfs@7F#p( z;^(tZ+&#a0`Qoz;H713v)bjlH)h5Dyu&(m2rtrP@`_cHe#ul~ob^HeYMm#Ix>UGwVcQpr z_k>g_oqgHM*Rd(jWLurOb&cjV%L zqg_^gw&H_j)yj0=TPLX0gdNQr&bqg*)*%0l)(SLJ9jR5j{j#1DrdoWJOhqzML;T^^ zSl7!^1sB+CY^f~rr`BrtG#3BOvf6aKQDrr((2=ZWdQDfIqOzKZ2U-g=k=JnCJbG~*Ky8QH9%Ox}CpIcIU`n=J1Uo^i}r_sC}5d$YYnoxh|mY5G- z=6yLk{I^Z_{;1q>W91?XgR>vBUZ|I0N1C0tZdbG(@42^4p=>>NRXuTV{@wzmJC`f^ zwBel5jTY>(j-yZk_My?ylVhe?KINcDZ=5#3*2$t!rf0t?6pCfPsT>sTO^|=BvqYgx z?9}^rP;;40T%A-b5r*T35rlCLRkFcAD&KUj3C0vL_ zi<01^i0R5)rcg|oD@IT^MWIX|!2Ly`*Z}U95!BzJP^PEU0}91b>Y)+TGf^nhYn$g3 ziq$qRjG$6v^prA{5;0XjuqhQj(OuC?CkkbHN~NbzETu9SL1h(%`t$Zw>xkpk4%aXI z?Z7Afik1zivvY5i$cOC@e?LCFOHls}ABXpuGi|i*<3s1dKQFNE*|fAJwl+F9`eK^y zLsERTH%sQ&A%AU)ZnwGi<>AktFFV(&?+f_Sdg_wk?kGppZ%)fC}+K} zu$zBX9N#-#t)u09#}pf1He>yLcUl&h=y%YXjY8G0`0JDs>wfNF$<9Hk25@;rp-itR z@=+*OQRL^K=s1V`Ykfx)%Jl5_E`?&*uc#4JX;CQCQ>qMwVkuSD2&$qel<6r|i9)fI zs%!*R!(*UoYM|aTf~xN^Q2rXI1_~5iP-b@wHp2z|UU75!Bdk~4LirKRc%dCG#G=|s zuvct)9&S&eSRU?R1l3Ix%Je~OcM8P@vF~$Gd}>((M4?QtLIWujt3rb~DALH$yle@@ z1?|W@Ocd4hOc_p5S*Gk82bJKGm(?i>WqSHWQz({xF-A}ydJNPM4b)I0sF5B6^@#>* zlo8Z;Q7F@A3MNn}Hd8Rs2x^)rl<8$^I)!3oYK9TiTu~^~YrlCEiq(Geji45ZLYbaY zUr{KQQj3kCmWx7}o>D6)6icaOAfB7^r<3sQpGzM?D7WmDDD_RJrsp9J^MYPP%QgBHiCK~3T1lh^^!ud z*6Wo5rP=zNDwE*Mlj+&d8!=U{9i_%6x@$)nM4?R2ei5mZBufoi0IYHS46(qo`nX`osgL3I>`GQFbjM4?zk z-`NPNhbWZkJ;Dzt6zdW8P0zSS-YWqL{lQz({FAsiH~`CKy>eMO;6Z;~S@6l;MR9Sb34xhTp+I$mW7H7=@+|(*sjmfXawF;J^CP^;rWv60MoxWMvlNqPjq_xMzQbJ7O- z(`<9nM&+k9`D6<q|PGlA*N%vK7;nwf11lqM7WA_`@C&fZO-STnQ72x`B_KpoIP z9aNym3?<3c>{!p^9s_kk19eh?(qzAL9s_k=19ia&>YB$uUDrU}FoL=x3T1ljcb7u3 z+V7qb)MHU7(`&yc6pGb;PmQ2ni9(s4Qm-i#ODQj_!BR$QT=0y>Hw|Ly>VYw+v_?>w zM4?O{Ianza8#!d=p!jOtno|_Y^z4_5La~&}%|W5rg0Gy6Y-Xn&fUI3Kd#1X26sjCmn}7t*sMw^=Y03Gs65*x-V~i@jCq0 z)Na`lYhwykWc0HsMee>^z|us4BHe28hXY_;FKa7NDATK~))b0mzcvb#Ci`^~g)+U$ z>P(?nmDR-v>I08~>ZyV1r9jboSjl}})?iU6(<_P)3dJgl-U<}SetZ_RMu$i#bsF5lt2P5iZ2y*Z%(-yI~ZHDKlJw;*;8?%xF<4 z)AR5c3dQp9SOrS6DeN;*DATLZNfe4zp_3ITO-g<4F;Fu#P_vAn7I+NQLJd@`5!BbB zP^OouB@~L4sc#f0Ql`jgn7%A4aX~vlzgiU4^!vfSrKs$Fur&%QU4x*g)(xUiGlqOO za?IMrk6OQfd1}Y|lZqcHU43@OwL>0`sk-`?%>glUmwvwS%dOwX9KF1-R_a^pyX6|6 zudeTzwM#-S%^q-a!v4|CGUnX6echHHGo4>}Y1Dn|>uulkoOV3unfK~6&lW8^e6?Zj za$5&}ROd*UPAiu7xW8!U^&Yo!Hmj4jg}v6ye3sWc7OdN8-AJM8boQSf*#BOA%O(zr zoC;3Tk-V&1MWIY@*SAq9)_QGMpfq*jZc!-HEBZYYidFQ#Dp0grN&6et1ENr-r_@0T z#Zu~!0!7OdJ7(a7D3s|H#YqaqDvDDIlqUO~7lkrCr7ln?mQojupssri)C~>PpGHu3 zJqGHY2I{^M)Dw?^da8l?#|Y}RD3s|{IvG)_w`^GOiS7*@X>cJHt?>W<&@nBAVikpC z1Z5S4GCid-Qz+K>W>KJM<4d|oV{W1tFapo$nll@Nt8z40wc zp;(zJWdv1T6e>%$jsD-ydjI&KLf*q?ExPa6mt(@1O=VtpeSdF(T2n?_GmYFf@%o`s zL34JjJ3Y)V{N$Gz?N|3V|GNC~S9j~ycXa==+PS?MhBg?RZ`tmS{s&IYOS?34jv61| zE`6Kk0Z|1oo+yl6+tx|IG1TRC5*{0McSU$K6R z3$b{Y;Pi*-$-Ra`vE*K>Kxqo*MvsBoq=EXu2x^-sl<9eRJB4C-_-7-iJstz~s|M;f zBdCL-P^PyFhbR+4{}QRWjdqXOG@Gk+)06S5nsVJ3`YJD7yRN z%gp3f_Jaxb^9Z!mVe#KQG762U=~l2cE2$KH{50H>;%y@U8c7W8TZ@ z!pDZyzGyu~p?38iwr5=E&X$(b3KU&6>@)(fIgrkAOU6pEFpOA3^x_PZepWqS7e zlR~lVchd;!o+y;*?bLk=#oDRA6(~BRO&ekBQ&A|>Q|ccI#Zu~-0;S1*UbsV4s7GP? z78?s<>RKgYTWnI`6S7J~QYej5Nf1D5T2Uy|v!6tvSoTY&K+%+9Q;Jqx&`v345k)mU zQ)Z>8EK_DvP-zKMlF-YVM-(^Kjl3dK_DT?L9} zN}5vMH{|7sAXWIY( literal 0 HcmV?d00001 diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb b/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb rename to .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb diff --git a/AlfaPrentice/obj/Debug/net5.0/apphost.exe b/.net/AlfaPrentice/obj/Debug/net5.0/apphost.exe similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/apphost.exe rename to .net/AlfaPrentice/obj/Debug/net5.0/apphost.exe diff --git a/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll b/.net/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll rename to .net/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll diff --git a/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache b/.net/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache rename to .net/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml b/.net/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml rename to .net/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml b/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml rename to .net/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/.net/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs rename to .net/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/.net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs rename to .net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/.net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache rename to .net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache b/.net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache rename to .net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/.net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache rename to .net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache diff --git a/AlfaPrentice/obj/project.assets.json b/.net/AlfaPrentice/obj/project.assets.json similarity index 100% rename from AlfaPrentice/obj/project.assets.json rename to .net/AlfaPrentice/obj/project.assets.json diff --git a/AlfaPrentice/obj/project.nuget.cache b/.net/AlfaPrentice/obj/project.nuget.cache similarity index 100% rename from AlfaPrentice/obj/project.nuget.cache rename to .net/AlfaPrentice/obj/project.nuget.cache diff --git a/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 b/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 index ecc9b43a632401aa17fb19efd9fc783bd9b29e61..fe581e66fe55b716eaf2c87edf5fbc86d362d4c4 100644 GIT binary patch delta 18530 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 delta 15259 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 diff --git a/.vs/AlfaPrentice/v16/.suo b/.vs/AlfaPrentice/v16/.suo index 900fef7b081522424f3a06b42adbf14540f1616f..d980abd39f1c81ff0a5662c96428883a0da72cd8 100644 GIT binary patch delta 10604 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 y*!1ke{Eu9IT^C9}_^dq$QZG+yTNg$lWrR7PUpC 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 Date: Fri, 18 Dec 2020 13:00:15 +0100 Subject: [PATCH 3/3] rename .net file to dotnet --- {.net => dotnet}/AlfaPrentice.sln | 0 .../.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 | Bin .../AlfaPrentice/.vs/AlfaPrentice/v16/.suo | Bin .../AlfaPrentice/.vs/VSWorkspaceState.json | 0 {.net => dotnet}/AlfaPrentice/.vs/slnx.sqlite | Bin {.net => dotnet}/AlfaPrentice/AlfaPrentice.csproj | 0 .../AlfaPrentice/AlfaPrentice.csproj.user | 0 .../AlfaPrentice/Controllers/BedrijfController.cs | 0 .../Controllers/SollicitatieController.cs | 0 .../Controllers/WeatherForecastController.cs | 0 .../AlfaPrentice/Data/AlfaPrenticeContext.cs | 0 {.net => dotnet}/AlfaPrentice/Dockerfile | 0 {.net => dotnet}/AlfaPrentice/Models/Adres.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Afspraak.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Agenda.cs | 0 {.net => dotnet}/AlfaPrentice/Models/AgendaBlok.cs | 0 {.net => dotnet}/AlfaPrentice/Models/AppSettings.cs | 0 {.net => dotnet}/AlfaPrentice/Models/BPVDocent.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Bedrijf.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Bericht.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Deelnemer.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Docent.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Document.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Eisen.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Evaluatie.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Gebruiker.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Klas.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Mentor.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Opleiding.cs | 0 {.net => dotnet}/AlfaPrentice/Models/POK.cs | 0 .../AlfaPrentice/Models/Praktijkbegeleider.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Session.cs | 0 .../AlfaPrentice/Models/Sollicitatie.cs | 0 {.net => dotnet}/AlfaPrentice/Models/StagePlek.cs | 0 .../AlfaPrentice/Models/Stagecoordinator.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Student.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Traject.cs | 0 {.net => dotnet}/AlfaPrentice/Models/Weekstaten.cs | 0 {.net => dotnet}/AlfaPrentice/Program.cs | 0 .../AlfaPrentice/Properties/launchSettings.json | 0 .../Repositorys/Interfaces/IAfspraakRepository.cs | 0 .../Repositorys/Interfaces/IAgendaRepository.cs | 0 .../Repositorys/Interfaces/IBedrijfRepository.cs | 0 .../Interfaces/ISollicitatieRepository.cs | 0 .../implementaties/AfspraakRepository.cs | 0 .../Repositorys/implementaties/AgendaRepository.cs | 0 .../Repositorys/implementaties/BedrijfRepository.cs | 0 .../implementaties/SollicitatieRepository.cs | 0 {.net => dotnet}/AlfaPrentice/Startup.cs | 0 {.net => dotnet}/AlfaPrentice/WeatherForecast.cs | 0 .../AlfaPrentice/appsettings.Development.json | 0 {.net => dotnet}/AlfaPrentice/appsettings.json | 0 .../bin/Debug/net5.0/AlfaPrentice.deps.json | 0 .../AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll | Bin .../AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe | Bin .../AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb | Bin .../net5.0/AlfaPrentice.runtimeconfig.dev.json | 0 .../Debug/net5.0/AlfaPrentice.runtimeconfig.json | 0 .../bin/Debug/net5.0/BouncyCastle.Crypto.dll | Bin .../bin/Debug/net5.0/Google.Protobuf.dll | Bin .../Debug/net5.0/K4os.Compression.LZ4.Streams.dll | Bin .../bin/Debug/net5.0/K4os.Compression.LZ4.dll | Bin .../bin/Debug/net5.0/K4os.Hash.xxHash.dll | Bin ...icrosoft.AspNetCore.Authentication.JwtBearer.dll | Bin ...soft.AspNetCore.Authentication.OpenIdConnect.dll | Bin .../net5.0/Microsoft.AspNetCore.Razor.Language.dll | Bin .../Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll | Bin .../bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll | Bin .../Microsoft.CodeAnalysis.CSharp.Workspaces.dll | Bin .../Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll | Bin .../Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll | Bin .../net5.0/Microsoft.CodeAnalysis.Workspaces.dll | Bin .../bin/Debug/net5.0/Microsoft.CodeAnalysis.dll | Bin .../Microsoft.EntityFrameworkCore.Abstractions.dll | Bin .../net5.0/Microsoft.EntityFrameworkCore.Design.dll | Bin .../Microsoft.EntityFrameworkCore.Relational.dll | Bin .../Debug/net5.0/Microsoft.EntityFrameworkCore.dll | Bin .../Microsoft.IdentityModel.JsonWebTokens.dll | Bin .../net5.0/Microsoft.IdentityModel.Logging.dll | Bin ...rosoft.IdentityModel.Protocols.OpenIdConnect.dll | Bin .../net5.0/Microsoft.IdentityModel.Protocols.dll | Bin .../Debug/net5.0/Microsoft.IdentityModel.Tokens.dll | Bin .../bin/Debug/net5.0/Microsoft.OpenApi.dll | Bin ...ft.VisualStudio.Web.CodeGeneration.Contracts.dll | Bin ...crosoft.VisualStudio.Web.CodeGeneration.Core.dll | Bin ...tudio.Web.CodeGeneration.EntityFrameworkCore.dll | Bin ...t.VisualStudio.Web.CodeGeneration.Templating.dll | Bin ...rosoft.VisualStudio.Web.CodeGeneration.Utils.dll | Bin .../Microsoft.VisualStudio.Web.CodeGeneration.dll | Bin ...icrosoft.VisualStudio.Web.CodeGenerators.Mvc.dll | Bin .../Debug/net5.0/MySql.Data.EntityFrameworkCore.dll | Bin .../AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll | Bin .../bin/Debug/net5.0/Newtonsoft.Json.dll | Bin .../bin/Debug/net5.0/NuGet.Frameworks.dll | Bin .../AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll | Bin .../Debug/net5.0/SshNet.Security.Cryptography.dll | Bin .../Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll | Bin .../net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll | Bin .../net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll | Bin .../net5.0/System.Composition.AttributedModel.dll | Bin .../Debug/net5.0/System.Composition.Convention.dll | Bin .../bin/Debug/net5.0/System.Composition.Hosting.dll | Bin .../bin/Debug/net5.0/System.Composition.Runtime.dll | Bin .../Debug/net5.0/System.Composition.TypedParts.dll | Bin .../System.Configuration.ConfigurationManager.dll | Bin .../net5.0/System.IdentityModel.Tokens.Jwt.dll | Bin .../System.Security.Cryptography.ProtectedData.dll | Bin .../Debug/net5.0/System.Xml.XPath.XmlDocument.dll | Bin .../bin/Debug/net5.0/Ubiety.Dns.Core.dll | Bin .../AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll | Bin .../bin/Debug/net5.0/appsettings.Development.json | 0 .../AlfaPrentice/bin/Debug/net5.0/appsettings.json | 0 ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../cs/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/cs/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../de/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/de/Microsoft.CodeAnalysis.resources.dll | Bin .../net5.0/dotnet-aspnet-codegenerator-design.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../es/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/es/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../fr/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/fr/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../it/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/it/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../ja/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/ja/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../ko/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/ko/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../pl/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/pl/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../pt-BR/Microsoft.CodeAnalysis.resources.dll | Bin .../bin/Debug/net5.0/ref/AlfaPrentice.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../ru/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/ru/Microsoft.CodeAnalysis.resources.dll | Bin .../System.Security.Cryptography.ProtectedData.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../tr/Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../net5.0/tr/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../zh-Hans/Microsoft.CodeAnalysis.resources.dll | Bin ...oft.CodeAnalysis.CSharp.Workspaces.resources.dll | Bin .../Microsoft.CodeAnalysis.CSharp.resources.dll | Bin .../Microsoft.CodeAnalysis.Workspaces.resources.dll | Bin .../zh-Hant/Microsoft.CodeAnalysis.resources.dll | Bin .../bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json | 0 .../bin/Debug/netcoreapp3.1/AlfaPrentice.dll | Bin .../bin/Debug/netcoreapp3.1/AlfaPrentice.exe | Bin .../bin/Debug/netcoreapp3.1/AlfaPrentice.pdb | Bin .../AlfaPrentice.runtimeconfig.dev.json | 0 .../netcoreapp3.1/AlfaPrentice.runtimeconfig.json | 0 .../Microsoft.DotNet.PlatformAbstractions.dll | Bin .../Microsoft.EntityFrameworkCore.Abstractions.dll | Bin .../Microsoft.EntityFrameworkCore.Relational.dll | Bin .../netcoreapp3.1/Microsoft.EntityFrameworkCore.dll | Bin .../Microsoft.Extensions.Caching.Abstractions.dll | Bin .../Microsoft.Extensions.Caching.Memory.dll | Bin ....Extensions.DependencyInjection.Abstractions.dll | Bin .../Microsoft.Extensions.DependencyInjection.dll | Bin .../Microsoft.Extensions.DependencyModel.dll | Bin .../Microsoft.Extensions.Logging.Abstractions.dll | Bin .../Microsoft.Extensions.Logging.Debug.dll | Bin .../netcoreapp3.1/Microsoft.Extensions.Logging.dll | Bin .../netcoreapp3.1/Microsoft.Extensions.Options.dll | Bin .../Microsoft.Extensions.Primitives.dll | Bin .../bin/Debug/netcoreapp3.1/MySqlConnector.dll | Bin .../bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll | Bin .../Pomelo.EntityFrameworkCore.MySql.dll | Bin .../bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll | Bin .../netcoreapp3.1/Properties/launchSettings.json | 0 .../netcoreapp3.1/System.Collections.Immutable.dll | Bin .../System.ComponentModel.Annotations.dll | Bin .../System.Diagnostics.DiagnosticSource.dll | Bin .../netcoreapp3.1/appsettings.Development.json | 0 .../bin/Debug/netcoreapp3.1/appsettings.json | 0 .../obj/AlfaPrentice.csproj.nuget.dgspec.json | 0 .../obj/AlfaPrentice.csproj.nuget.g.props | 0 .../obj/AlfaPrentice.csproj.nuget.g.targets | 0 .../.NETCoreApp,Version=v5.0.AssemblyAttributes.cs | 0 .../obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs | 0 .../net5.0/AlfaPrentice.AssemblyInfoInputs.cache | 0 ...entice.GeneratedMSBuildEditorConfig.editorconfig | 0 ...faPrentice.MvcApplicationPartsAssemblyInfo.cache | 0 .../AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs | 0 .../AlfaPrentice.RazorTargetAssemblyInfo.cache | 0 .../obj/Debug/net5.0/AlfaPrentice.assets.cache | Bin .../Debug/net5.0/AlfaPrentice.csproj.CopyComplete | 0 .../AlfaPrentice.csproj.CoreCompileInputs.cache | 0 .../net5.0/AlfaPrentice.csproj.FileListAbsolute.txt | 0 .../AlfaPrentice.csprojAssemblyReference.cache | Bin .../AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll | Bin .../net5.0/AlfaPrentice.genruntimeconfig.cache | 0 .../AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb | Bin .../AlfaPrentice/obj/Debug/net5.0/apphost.exe | Bin .../obj/Debug/net5.0/ref/AlfaPrentice.dll | Bin .../AlfaPrentice.StaticWebAssets.Manifest.cache | 0 .../AlfaPrentice.StaticWebAssets.xml | 0 .../.NETCoreApp,Version=v3.1.AssemblyAttributes.cs | 0 .../netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs | 0 .../AlfaPrentice.AssemblyInfoInputs.cache | 0 ...faPrentice.MvcApplicationPartsAssemblyInfo.cache | 0 .../AlfaPrentice.RazorTargetAssemblyInfo.cache | 0 .../Debug/netcoreapp3.1/AlfaPrentice.assets.cache | Bin .../netcoreapp3.1/AlfaPrentice.csproj.CopyComplete | 0 .../AlfaPrentice.csproj.CoreCompileInputs.cache | 0 .../AlfaPrentice.csproj.FileListAbsolute.txt | 0 .../AlfaPrentice.csprojAssemblyReference.cache | Bin .../obj/Debug/netcoreapp3.1/AlfaPrentice.dll | Bin .../obj/Debug/netcoreapp3.1/AlfaPrentice.exe | Bin .../AlfaPrentice.genruntimeconfig.cache | 0 .../obj/Debug/netcoreapp3.1/AlfaPrentice.pdb | Bin .../obj/Debug/netcoreapp3.1/apphost.exe | Bin .../AlfaPrentice.StaticWebAssets.Manifest.cache | 0 .../AlfaPrentice.StaticWebAssets.xml | 0 .../.NETCoreApp,Version=v3.1.AssemblyAttributes.cs | 0 .../netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs | 0 .../AlfaPrentice.AssemblyInfoInputs.cache | 0 .../Release/netcoreapp3.1/AlfaPrentice.assets.cache | Bin .../AlfaPrentice.csprojAssemblyReference.cache | Bin .../AlfaPrentice/obj/project.assets.json | 0 .../AlfaPrentice/obj/project.nuget.cache | 0 243 files changed, 0 insertions(+), 0 deletions(-) rename {.net => dotnet}/AlfaPrentice.sln (100%) rename {.net => dotnet}/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 (100%) rename {.net => dotnet}/AlfaPrentice/.vs/AlfaPrentice/v16/.suo (100%) rename {.net => dotnet}/AlfaPrentice/.vs/VSWorkspaceState.json (100%) rename {.net => dotnet}/AlfaPrentice/.vs/slnx.sqlite (100%) rename {.net => dotnet}/AlfaPrentice/AlfaPrentice.csproj (100%) rename {.net => dotnet}/AlfaPrentice/AlfaPrentice.csproj.user (100%) rename {.net => dotnet}/AlfaPrentice/Controllers/BedrijfController.cs (100%) rename {.net => dotnet}/AlfaPrentice/Controllers/SollicitatieController.cs (100%) rename {.net => dotnet}/AlfaPrentice/Controllers/WeatherForecastController.cs (100%) rename {.net => dotnet}/AlfaPrentice/Data/AlfaPrenticeContext.cs (100%) rename {.net => dotnet}/AlfaPrentice/Dockerfile (100%) rename {.net => dotnet}/AlfaPrentice/Models/Adres.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Afspraak.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Agenda.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/AgendaBlok.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/AppSettings.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/BPVDocent.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Bedrijf.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Bericht.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Deelnemer.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Docent.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Document.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Eisen.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Evaluatie.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Gebruiker.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Klas.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Mentor.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Opleiding.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/POK.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Praktijkbegeleider.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Session.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Sollicitatie.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/StagePlek.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Stagecoordinator.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Student.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Traject.cs (100%) rename {.net => dotnet}/AlfaPrentice/Models/Weekstaten.cs (100%) rename {.net => dotnet}/AlfaPrentice/Program.cs (100%) rename {.net => dotnet}/AlfaPrentice/Properties/launchSettings.json (100%) rename {.net => dotnet}/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs (100%) rename {.net => dotnet}/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs (100%) rename {.net => dotnet}/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs (100%) rename {.net => dotnet}/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs (100%) rename {.net => dotnet}/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs (100%) rename {.net => dotnet}/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs (100%) rename {.net => dotnet}/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs (100%) rename {.net => dotnet}/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs (100%) rename {.net => dotnet}/AlfaPrentice/Startup.cs (100%) rename {.net => dotnet}/AlfaPrentice/WeatherForecast.cs (100%) rename {.net => dotnet}/AlfaPrentice/appsettings.Development.json (100%) rename {.net => dotnet}/AlfaPrentice/appsettings.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/appsettings.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json (100%) rename {.net => dotnet}/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json (100%) rename {.net => dotnet}/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json (100%) rename {.net => dotnet}/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props (100%) rename {.net => dotnet}/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/apphost.exe (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml (100%) rename {.net => dotnet}/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs (100%) rename {.net => dotnet}/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs (100%) rename {.net => dotnet}/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache (100%) rename {.net => dotnet}/AlfaPrentice/obj/project.assets.json (100%) rename {.net => dotnet}/AlfaPrentice/obj/project.nuget.cache (100%) diff --git a/.net/AlfaPrentice.sln b/dotnet/AlfaPrentice.sln similarity index 100% rename from .net/AlfaPrentice.sln rename to dotnet/AlfaPrentice.sln diff --git a/.net/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 b/dotnet/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 similarity index 100% rename from .net/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 rename to dotnet/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 diff --git a/.net/AlfaPrentice/.vs/AlfaPrentice/v16/.suo b/dotnet/AlfaPrentice/.vs/AlfaPrentice/v16/.suo similarity index 100% rename from .net/AlfaPrentice/.vs/AlfaPrentice/v16/.suo rename to dotnet/AlfaPrentice/.vs/AlfaPrentice/v16/.suo diff --git a/.net/AlfaPrentice/.vs/VSWorkspaceState.json b/dotnet/AlfaPrentice/.vs/VSWorkspaceState.json similarity index 100% rename from .net/AlfaPrentice/.vs/VSWorkspaceState.json rename to dotnet/AlfaPrentice/.vs/VSWorkspaceState.json diff --git a/.net/AlfaPrentice/.vs/slnx.sqlite b/dotnet/AlfaPrentice/.vs/slnx.sqlite similarity index 100% rename from .net/AlfaPrentice/.vs/slnx.sqlite rename to dotnet/AlfaPrentice/.vs/slnx.sqlite diff --git a/.net/AlfaPrentice/AlfaPrentice.csproj b/dotnet/AlfaPrentice/AlfaPrentice.csproj similarity index 100% rename from .net/AlfaPrentice/AlfaPrentice.csproj rename to dotnet/AlfaPrentice/AlfaPrentice.csproj diff --git a/.net/AlfaPrentice/AlfaPrentice.csproj.user b/dotnet/AlfaPrentice/AlfaPrentice.csproj.user similarity index 100% rename from .net/AlfaPrentice/AlfaPrentice.csproj.user rename to dotnet/AlfaPrentice/AlfaPrentice.csproj.user diff --git a/.net/AlfaPrentice/Controllers/BedrijfController.cs b/dotnet/AlfaPrentice/Controllers/BedrijfController.cs similarity index 100% rename from .net/AlfaPrentice/Controllers/BedrijfController.cs rename to dotnet/AlfaPrentice/Controllers/BedrijfController.cs diff --git a/.net/AlfaPrentice/Controllers/SollicitatieController.cs b/dotnet/AlfaPrentice/Controllers/SollicitatieController.cs similarity index 100% rename from .net/AlfaPrentice/Controllers/SollicitatieController.cs rename to dotnet/AlfaPrentice/Controllers/SollicitatieController.cs diff --git a/.net/AlfaPrentice/Controllers/WeatherForecastController.cs b/dotnet/AlfaPrentice/Controllers/WeatherForecastController.cs similarity index 100% rename from .net/AlfaPrentice/Controllers/WeatherForecastController.cs rename to dotnet/AlfaPrentice/Controllers/WeatherForecastController.cs diff --git a/.net/AlfaPrentice/Data/AlfaPrenticeContext.cs b/dotnet/AlfaPrentice/Data/AlfaPrenticeContext.cs similarity index 100% rename from .net/AlfaPrentice/Data/AlfaPrenticeContext.cs rename to dotnet/AlfaPrentice/Data/AlfaPrenticeContext.cs diff --git a/.net/AlfaPrentice/Dockerfile b/dotnet/AlfaPrentice/Dockerfile similarity index 100% rename from .net/AlfaPrentice/Dockerfile rename to dotnet/AlfaPrentice/Dockerfile diff --git a/.net/AlfaPrentice/Models/Adres.cs b/dotnet/AlfaPrentice/Models/Adres.cs similarity index 100% rename from .net/AlfaPrentice/Models/Adres.cs rename to dotnet/AlfaPrentice/Models/Adres.cs diff --git a/.net/AlfaPrentice/Models/Afspraak.cs b/dotnet/AlfaPrentice/Models/Afspraak.cs similarity index 100% rename from .net/AlfaPrentice/Models/Afspraak.cs rename to dotnet/AlfaPrentice/Models/Afspraak.cs diff --git a/.net/AlfaPrentice/Models/Agenda.cs b/dotnet/AlfaPrentice/Models/Agenda.cs similarity index 100% rename from .net/AlfaPrentice/Models/Agenda.cs rename to dotnet/AlfaPrentice/Models/Agenda.cs diff --git a/.net/AlfaPrentice/Models/AgendaBlok.cs b/dotnet/AlfaPrentice/Models/AgendaBlok.cs similarity index 100% rename from .net/AlfaPrentice/Models/AgendaBlok.cs rename to dotnet/AlfaPrentice/Models/AgendaBlok.cs diff --git a/.net/AlfaPrentice/Models/AppSettings.cs b/dotnet/AlfaPrentice/Models/AppSettings.cs similarity index 100% rename from .net/AlfaPrentice/Models/AppSettings.cs rename to dotnet/AlfaPrentice/Models/AppSettings.cs diff --git a/.net/AlfaPrentice/Models/BPVDocent.cs b/dotnet/AlfaPrentice/Models/BPVDocent.cs similarity index 100% rename from .net/AlfaPrentice/Models/BPVDocent.cs rename to dotnet/AlfaPrentice/Models/BPVDocent.cs diff --git a/.net/AlfaPrentice/Models/Bedrijf.cs b/dotnet/AlfaPrentice/Models/Bedrijf.cs similarity index 100% rename from .net/AlfaPrentice/Models/Bedrijf.cs rename to dotnet/AlfaPrentice/Models/Bedrijf.cs diff --git a/.net/AlfaPrentice/Models/Bericht.cs b/dotnet/AlfaPrentice/Models/Bericht.cs similarity index 100% rename from .net/AlfaPrentice/Models/Bericht.cs rename to dotnet/AlfaPrentice/Models/Bericht.cs diff --git a/.net/AlfaPrentice/Models/Deelnemer.cs b/dotnet/AlfaPrentice/Models/Deelnemer.cs similarity index 100% rename from .net/AlfaPrentice/Models/Deelnemer.cs rename to dotnet/AlfaPrentice/Models/Deelnemer.cs diff --git a/.net/AlfaPrentice/Models/Docent.cs b/dotnet/AlfaPrentice/Models/Docent.cs similarity index 100% rename from .net/AlfaPrentice/Models/Docent.cs rename to dotnet/AlfaPrentice/Models/Docent.cs diff --git a/.net/AlfaPrentice/Models/Document.cs b/dotnet/AlfaPrentice/Models/Document.cs similarity index 100% rename from .net/AlfaPrentice/Models/Document.cs rename to dotnet/AlfaPrentice/Models/Document.cs diff --git a/.net/AlfaPrentice/Models/Eisen.cs b/dotnet/AlfaPrentice/Models/Eisen.cs similarity index 100% rename from .net/AlfaPrentice/Models/Eisen.cs rename to dotnet/AlfaPrentice/Models/Eisen.cs diff --git a/.net/AlfaPrentice/Models/Evaluatie.cs b/dotnet/AlfaPrentice/Models/Evaluatie.cs similarity index 100% rename from .net/AlfaPrentice/Models/Evaluatie.cs rename to dotnet/AlfaPrentice/Models/Evaluatie.cs diff --git a/.net/AlfaPrentice/Models/Gebruiker.cs b/dotnet/AlfaPrentice/Models/Gebruiker.cs similarity index 100% rename from .net/AlfaPrentice/Models/Gebruiker.cs rename to dotnet/AlfaPrentice/Models/Gebruiker.cs diff --git a/.net/AlfaPrentice/Models/Klas.cs b/dotnet/AlfaPrentice/Models/Klas.cs similarity index 100% rename from .net/AlfaPrentice/Models/Klas.cs rename to dotnet/AlfaPrentice/Models/Klas.cs diff --git a/.net/AlfaPrentice/Models/Mentor.cs b/dotnet/AlfaPrentice/Models/Mentor.cs similarity index 100% rename from .net/AlfaPrentice/Models/Mentor.cs rename to dotnet/AlfaPrentice/Models/Mentor.cs diff --git a/.net/AlfaPrentice/Models/Opleiding.cs b/dotnet/AlfaPrentice/Models/Opleiding.cs similarity index 100% rename from .net/AlfaPrentice/Models/Opleiding.cs rename to dotnet/AlfaPrentice/Models/Opleiding.cs diff --git a/.net/AlfaPrentice/Models/POK.cs b/dotnet/AlfaPrentice/Models/POK.cs similarity index 100% rename from .net/AlfaPrentice/Models/POK.cs rename to dotnet/AlfaPrentice/Models/POK.cs diff --git a/.net/AlfaPrentice/Models/Praktijkbegeleider.cs b/dotnet/AlfaPrentice/Models/Praktijkbegeleider.cs similarity index 100% rename from .net/AlfaPrentice/Models/Praktijkbegeleider.cs rename to dotnet/AlfaPrentice/Models/Praktijkbegeleider.cs diff --git a/.net/AlfaPrentice/Models/Session.cs b/dotnet/AlfaPrentice/Models/Session.cs similarity index 100% rename from .net/AlfaPrentice/Models/Session.cs rename to dotnet/AlfaPrentice/Models/Session.cs diff --git a/.net/AlfaPrentice/Models/Sollicitatie.cs b/dotnet/AlfaPrentice/Models/Sollicitatie.cs similarity index 100% rename from .net/AlfaPrentice/Models/Sollicitatie.cs rename to dotnet/AlfaPrentice/Models/Sollicitatie.cs diff --git a/.net/AlfaPrentice/Models/StagePlek.cs b/dotnet/AlfaPrentice/Models/StagePlek.cs similarity index 100% rename from .net/AlfaPrentice/Models/StagePlek.cs rename to dotnet/AlfaPrentice/Models/StagePlek.cs diff --git a/.net/AlfaPrentice/Models/Stagecoordinator.cs b/dotnet/AlfaPrentice/Models/Stagecoordinator.cs similarity index 100% rename from .net/AlfaPrentice/Models/Stagecoordinator.cs rename to dotnet/AlfaPrentice/Models/Stagecoordinator.cs diff --git a/.net/AlfaPrentice/Models/Student.cs b/dotnet/AlfaPrentice/Models/Student.cs similarity index 100% rename from .net/AlfaPrentice/Models/Student.cs rename to dotnet/AlfaPrentice/Models/Student.cs diff --git a/.net/AlfaPrentice/Models/Traject.cs b/dotnet/AlfaPrentice/Models/Traject.cs similarity index 100% rename from .net/AlfaPrentice/Models/Traject.cs rename to dotnet/AlfaPrentice/Models/Traject.cs diff --git a/.net/AlfaPrentice/Models/Weekstaten.cs b/dotnet/AlfaPrentice/Models/Weekstaten.cs similarity index 100% rename from .net/AlfaPrentice/Models/Weekstaten.cs rename to dotnet/AlfaPrentice/Models/Weekstaten.cs diff --git a/.net/AlfaPrentice/Program.cs b/dotnet/AlfaPrentice/Program.cs similarity index 100% rename from .net/AlfaPrentice/Program.cs rename to dotnet/AlfaPrentice/Program.cs diff --git a/.net/AlfaPrentice/Properties/launchSettings.json b/dotnet/AlfaPrentice/Properties/launchSettings.json similarity index 100% rename from .net/AlfaPrentice/Properties/launchSettings.json rename to dotnet/AlfaPrentice/Properties/launchSettings.json diff --git a/.net/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs b/dotnet/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs similarity index 100% rename from .net/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs rename to dotnet/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs diff --git a/.net/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs b/dotnet/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs similarity index 100% rename from .net/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs rename to dotnet/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs diff --git a/.net/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs b/dotnet/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs similarity index 100% rename from .net/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs rename to dotnet/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs diff --git a/.net/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs b/dotnet/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs similarity index 100% rename from .net/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs rename to dotnet/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs diff --git a/.net/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs b/dotnet/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs similarity index 100% rename from .net/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs rename to dotnet/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs diff --git a/.net/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs b/dotnet/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs similarity index 100% rename from .net/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs rename to dotnet/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs diff --git a/.net/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs b/dotnet/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs similarity index 100% rename from .net/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs rename to dotnet/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs diff --git a/.net/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs b/dotnet/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs similarity index 100% rename from .net/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs rename to dotnet/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs diff --git a/.net/AlfaPrentice/Startup.cs b/dotnet/AlfaPrentice/Startup.cs similarity index 100% rename from .net/AlfaPrentice/Startup.cs rename to dotnet/AlfaPrentice/Startup.cs diff --git a/.net/AlfaPrentice/WeatherForecast.cs b/dotnet/AlfaPrentice/WeatherForecast.cs similarity index 100% rename from .net/AlfaPrentice/WeatherForecast.cs rename to dotnet/AlfaPrentice/WeatherForecast.cs diff --git a/.net/AlfaPrentice/appsettings.Development.json b/dotnet/AlfaPrentice/appsettings.Development.json similarity index 100% rename from .net/AlfaPrentice/appsettings.Development.json rename to dotnet/AlfaPrentice/appsettings.Development.json diff --git a/.net/AlfaPrentice/appsettings.json b/dotnet/AlfaPrentice/appsettings.json similarity index 100% rename from .net/AlfaPrentice/appsettings.json rename to dotnet/AlfaPrentice/appsettings.json diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Xml.XPath.XmlDocument.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/appsettings.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/appsettings.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/appsettings.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/appsettings.json diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json diff --git a/.net/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json similarity index 100% rename from .net/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json diff --git a/.net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json b/dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json similarity index 100% rename from .net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json rename to dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json diff --git a/.net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props b/dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props similarity index 100% rename from .net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props rename to dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props diff --git a/.net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets b/dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets similarity index 100% rename from .net/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets rename to dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/dotnet/AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs rename to dotnet/AlfaPrentice/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/apphost.exe b/dotnet/AlfaPrentice/obj/Debug/net5.0/apphost.exe similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/apphost.exe rename to dotnet/AlfaPrentice/obj/Debug/net5.0/apphost.exe diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll b/dotnet/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll rename to dotnet/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache diff --git a/.net/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml b/dotnet/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml similarity index 100% rename from .net/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml rename to dotnet/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache diff --git a/.net/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml similarity index 100% rename from .net/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml diff --git a/.net/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs similarity index 100% rename from .net/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs diff --git a/.net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from .net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs diff --git a/.net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from .net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/.net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache similarity index 100% rename from .net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache diff --git a/.net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache similarity index 100% rename from .net/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache diff --git a/.net/AlfaPrentice/obj/project.assets.json b/dotnet/AlfaPrentice/obj/project.assets.json similarity index 100% rename from .net/AlfaPrentice/obj/project.assets.json rename to dotnet/AlfaPrentice/obj/project.assets.json diff --git a/.net/AlfaPrentice/obj/project.nuget.cache b/dotnet/AlfaPrentice/obj/project.nuget.cache similarity index 100% rename from .net/AlfaPrentice/obj/project.nuget.cache rename to dotnet/AlfaPrentice/obj/project.nuget.cache