diff --git a/AlfaPrentice.sln b/dotnet/AlfaPrentice.sln similarity index 100% rename from AlfaPrentice.sln rename to dotnet/AlfaPrentice.sln diff --git a/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 b/dotnet/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 similarity index 100% rename from AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 rename to dotnet/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 diff --git a/AlfaPrentice/.vs/AlfaPrentice/v16/.suo b/dotnet/AlfaPrentice/.vs/AlfaPrentice/v16/.suo similarity index 100% rename from AlfaPrentice/.vs/AlfaPrentice/v16/.suo rename to dotnet/AlfaPrentice/.vs/AlfaPrentice/v16/.suo diff --git a/AlfaPrentice/.vs/VSWorkspaceState.json b/dotnet/AlfaPrentice/.vs/VSWorkspaceState.json similarity index 100% rename from AlfaPrentice/.vs/VSWorkspaceState.json rename to dotnet/AlfaPrentice/.vs/VSWorkspaceState.json diff --git a/AlfaPrentice/.vs/slnx.sqlite b/dotnet/AlfaPrentice/.vs/slnx.sqlite similarity index 100% rename from AlfaPrentice/.vs/slnx.sqlite rename to dotnet/AlfaPrentice/.vs/slnx.sqlite diff --git a/AlfaPrentice/AlfaPrentice.csproj b/dotnet/AlfaPrentice/AlfaPrentice.csproj similarity index 100% rename from AlfaPrentice/AlfaPrentice.csproj rename to dotnet/AlfaPrentice/AlfaPrentice.csproj diff --git a/AlfaPrentice/AlfaPrentice.csproj.user b/dotnet/AlfaPrentice/AlfaPrentice.csproj.user similarity index 100% rename from AlfaPrentice/AlfaPrentice.csproj.user rename to dotnet/AlfaPrentice/AlfaPrentice.csproj.user diff --git a/dotnet/AlfaPrentice/Controllers/BedrijfController.cs b/dotnet/AlfaPrentice/Controllers/BedrijfController.cs new file mode 100644 index 0000000..0bf6b50 --- /dev/null +++ b/dotnet/AlfaPrentice/Controllers/BedrijfController.cs @@ -0,0 +1,56 @@ +using AlfaPrentice.Data; +using AlfaPrentice.Models; +using AlfaPrentice.Repositorys.Interfaces; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +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 BedrijfController : ControllerBase + { + //constructor + public IBedrijfRepository bedrijfRepo; + public BedrijfController(IBedrijfRepository bedrijfRepo) + { + this.bedrijfRepo = bedrijfRepo; + } + + [HttpGet] + public IEnumerable GetBedrijf() + { + 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; + } + + //add geheel bedrijf + [HttpPost] + public void AddBedrijf([FromBody] Bedrijf bedrijf) + { + bedrijfRepo.AddBedrijf(bedrijf); + } + + //update een volledig bedrijf + [HttpPost] + public void UpdateBedrijf([FromBody] Bedrijf bedrijf) + { + bedrijfRepo.UpdateBedrijf(bedrijf); + } + } +} diff --git a/dotnet/AlfaPrentice/Controllers/SollicitatieController.cs b/dotnet/AlfaPrentice/Controllers/SollicitatieController.cs new file mode 100644 index 0000000..1f834f7 --- /dev/null +++ b/dotnet/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/Controllers/WeatherForecastController.cs b/dotnet/AlfaPrentice/Controllers/WeatherForecastController.cs similarity index 100% rename from AlfaPrentice/Controllers/WeatherForecastController.cs rename to dotnet/AlfaPrentice/Controllers/WeatherForecastController.cs diff --git a/AlfaPrentice/Data/AlfaPrenticeContext.cs b/dotnet/AlfaPrentice/Data/AlfaPrenticeContext.cs similarity index 97% rename from AlfaPrentice/Data/AlfaPrenticeContext.cs rename to dotnet/AlfaPrentice/Data/AlfaPrenticeContext.cs index 3301dc1..489a7f7 100644 --- a/AlfaPrentice/Data/AlfaPrenticeContext.cs +++ b/dotnet/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/dotnet/AlfaPrentice/Dockerfile similarity index 100% rename from AlfaPrentice/Dockerfile rename to dotnet/AlfaPrentice/Dockerfile diff --git a/AlfaPrentice/Models/Adres.cs b/dotnet/AlfaPrentice/Models/Adres.cs similarity index 100% rename from AlfaPrentice/Models/Adres.cs rename to dotnet/AlfaPrentice/Models/Adres.cs diff --git a/AlfaPrentice/Models/Afspraak.cs b/dotnet/AlfaPrentice/Models/Afspraak.cs similarity index 100% rename from AlfaPrentice/Models/Afspraak.cs rename to dotnet/AlfaPrentice/Models/Afspraak.cs diff --git a/AlfaPrentice/Models/Agenda.cs b/dotnet/AlfaPrentice/Models/Agenda.cs similarity index 100% rename from AlfaPrentice/Models/Agenda.cs rename to dotnet/AlfaPrentice/Models/Agenda.cs diff --git a/AlfaPrentice/Models/AgendaBlok.cs b/dotnet/AlfaPrentice/Models/AgendaBlok.cs similarity index 100% rename from AlfaPrentice/Models/AgendaBlok.cs rename to dotnet/AlfaPrentice/Models/AgendaBlok.cs diff --git a/AlfaPrentice/Models/AppSettings.cs b/dotnet/AlfaPrentice/Models/AppSettings.cs similarity index 100% rename from AlfaPrentice/Models/AppSettings.cs rename to dotnet/AlfaPrentice/Models/AppSettings.cs diff --git a/AlfaPrentice/Models/BPVDocent.cs b/dotnet/AlfaPrentice/Models/BPVDocent.cs similarity index 100% rename from AlfaPrentice/Models/BPVDocent.cs rename to dotnet/AlfaPrentice/Models/BPVDocent.cs diff --git a/AlfaPrentice/Models/Bedrijf.cs b/dotnet/AlfaPrentice/Models/Bedrijf.cs similarity index 100% rename from AlfaPrentice/Models/Bedrijf.cs rename to dotnet/AlfaPrentice/Models/Bedrijf.cs diff --git a/AlfaPrentice/Models/Bericht.cs b/dotnet/AlfaPrentice/Models/Bericht.cs similarity index 100% rename from AlfaPrentice/Models/Bericht.cs rename to dotnet/AlfaPrentice/Models/Bericht.cs diff --git a/dotnet/AlfaPrentice/Models/Deelnemer.cs b/dotnet/AlfaPrentice/Models/Deelnemer.cs new file mode 100644 index 0000000..a828104 --- /dev/null +++ b/dotnet/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/dotnet/AlfaPrentice/Models/Docent.cs similarity index 90% rename from AlfaPrentice/Models/Docent.cs rename to dotnet/AlfaPrentice/Models/Docent.cs index 37e3444..51ad1fa 100644 --- a/AlfaPrentice/Models/Docent.cs +++ b/dotnet/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/dotnet/AlfaPrentice/Models/Document.cs similarity index 100% rename from AlfaPrentice/Models/Document.cs rename to dotnet/AlfaPrentice/Models/Document.cs diff --git a/AlfaPrentice/Models/Eisen.cs b/dotnet/AlfaPrentice/Models/Eisen.cs similarity index 100% rename from AlfaPrentice/Models/Eisen.cs rename to dotnet/AlfaPrentice/Models/Eisen.cs diff --git a/AlfaPrentice/Models/Evaluatie.cs b/dotnet/AlfaPrentice/Models/Evaluatie.cs similarity index 100% rename from AlfaPrentice/Models/Evaluatie.cs rename to dotnet/AlfaPrentice/Models/Evaluatie.cs diff --git a/AlfaPrentice/Models/Gebruiker.cs b/dotnet/AlfaPrentice/Models/Gebruiker.cs similarity index 100% rename from AlfaPrentice/Models/Gebruiker.cs rename to dotnet/AlfaPrentice/Models/Gebruiker.cs diff --git a/AlfaPrentice/Models/Klas.cs b/dotnet/AlfaPrentice/Models/Klas.cs similarity index 100% rename from AlfaPrentice/Models/Klas.cs rename to dotnet/AlfaPrentice/Models/Klas.cs diff --git a/AlfaPrentice/Models/Mentor.cs b/dotnet/AlfaPrentice/Models/Mentor.cs similarity index 100% rename from AlfaPrentice/Models/Mentor.cs rename to dotnet/AlfaPrentice/Models/Mentor.cs diff --git a/AlfaPrentice/Models/Opleiding.cs b/dotnet/AlfaPrentice/Models/Opleiding.cs similarity index 100% rename from AlfaPrentice/Models/Opleiding.cs rename to dotnet/AlfaPrentice/Models/Opleiding.cs diff --git a/AlfaPrentice/Models/POK.cs b/dotnet/AlfaPrentice/Models/POK.cs similarity index 100% rename from AlfaPrentice/Models/POK.cs rename to dotnet/AlfaPrentice/Models/POK.cs diff --git a/AlfaPrentice/Models/Praktijkbegeleider.cs b/dotnet/AlfaPrentice/Models/Praktijkbegeleider.cs similarity index 89% rename from AlfaPrentice/Models/Praktijkbegeleider.cs rename to dotnet/AlfaPrentice/Models/Praktijkbegeleider.cs index a6f92be..d515d8f 100644 --- a/AlfaPrentice/Models/Praktijkbegeleider.cs +++ b/dotnet/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/dotnet/AlfaPrentice/Models/Session.cs similarity index 100% rename from AlfaPrentice/Models/Session.cs rename to dotnet/AlfaPrentice/Models/Session.cs diff --git a/AlfaPrentice/Models/Sollicitatie.cs b/dotnet/AlfaPrentice/Models/Sollicitatie.cs similarity index 100% rename from AlfaPrentice/Models/Sollicitatie.cs rename to dotnet/AlfaPrentice/Models/Sollicitatie.cs diff --git a/AlfaPrentice/Models/StagePlek.cs b/dotnet/AlfaPrentice/Models/StagePlek.cs similarity index 100% rename from AlfaPrentice/Models/StagePlek.cs rename to dotnet/AlfaPrentice/Models/StagePlek.cs diff --git a/AlfaPrentice/Models/Stagecoordinator.cs b/dotnet/AlfaPrentice/Models/Stagecoordinator.cs similarity index 100% rename from AlfaPrentice/Models/Stagecoordinator.cs rename to dotnet/AlfaPrentice/Models/Stagecoordinator.cs diff --git a/AlfaPrentice/Models/Student.cs b/dotnet/AlfaPrentice/Models/Student.cs similarity index 94% rename from AlfaPrentice/Models/Student.cs rename to dotnet/AlfaPrentice/Models/Student.cs index 60e6aaa..118bf66 100644 --- a/AlfaPrentice/Models/Student.cs +++ b/dotnet/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/dotnet/AlfaPrentice/Models/Traject.cs similarity index 100% rename from AlfaPrentice/Models/Traject.cs rename to dotnet/AlfaPrentice/Models/Traject.cs diff --git a/AlfaPrentice/Models/Weekstaten.cs b/dotnet/AlfaPrentice/Models/Weekstaten.cs similarity index 100% rename from AlfaPrentice/Models/Weekstaten.cs rename to dotnet/AlfaPrentice/Models/Weekstaten.cs diff --git a/AlfaPrentice/Program.cs b/dotnet/AlfaPrentice/Program.cs similarity index 100% rename from AlfaPrentice/Program.cs rename to dotnet/AlfaPrentice/Program.cs diff --git a/AlfaPrentice/Properties/launchSettings.json b/dotnet/AlfaPrentice/Properties/launchSettings.json similarity index 100% rename from AlfaPrentice/Properties/launchSettings.json rename to dotnet/AlfaPrentice/Properties/launchSettings.json diff --git a/dotnet/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs b/dotnet/AlfaPrentice/Repositorys/Interfaces/IAfspraakRepository.cs new file mode 100644 index 0000000..2a01f71 --- /dev/null +++ b/dotnet/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/dotnet/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs b/dotnet/AlfaPrentice/Repositorys/Interfaces/IAgendaRepository.cs new file mode 100644 index 0000000..488253c --- /dev/null +++ b/dotnet/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/dotnet/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs similarity index 67% rename from AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs rename to dotnet/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs index b572025..044b7cf 100644 --- a/AlfaPrentice/Repositorys/Interfaces/IBedrijfRepository.cs +++ b/dotnet/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/dotnet/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs b/dotnet/AlfaPrentice/Repositorys/Interfaces/ISollicitatieRepository.cs new file mode 100644 index 0000000..79cff41 --- /dev/null +++ b/dotnet/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/dotnet/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs b/dotnet/AlfaPrentice/Repositorys/implementaties/AfspraakRepository.cs new file mode 100644 index 0000000..1ac4eb1 --- /dev/null +++ b/dotnet/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/dotnet/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs b/dotnet/AlfaPrentice/Repositorys/implementaties/AgendaRepository.cs new file mode 100644 index 0000000..d693dcf --- /dev/null +++ b/dotnet/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/dotnet/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs similarity index 51% rename from AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs rename to dotnet/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs index 1109b01..aa75627 100644 --- a/AlfaPrentice/Repositorys/implementaties/BedrijfRepository.cs +++ b/dotnet/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/dotnet/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs b/dotnet/AlfaPrentice/Repositorys/implementaties/SollicitatieRepository.cs new file mode 100644 index 0000000..2712eb8 --- /dev/null +++ b/dotnet/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 sollicitatie; + } + } +} diff --git a/AlfaPrentice/Startup.cs b/dotnet/AlfaPrentice/Startup.cs similarity index 88% rename from AlfaPrentice/Startup.cs rename to dotnet/AlfaPrentice/Startup.cs index e8b3832..d71493b 100644 --- a/AlfaPrentice/Startup.cs +++ b/dotnet/AlfaPrentice/Startup.cs @@ -33,7 +33,11 @@ namespace AlfaPrentice services.Configure(Configuration); services.AddDbContext(options => options.UseMySQL(Configuration.GetConnectionString("AlfaPrentice"))); + //depencies for interface and repos + services.AddTransient(); + services.AddTransient(); services.AddTransient(); + services.AddTransient(); services.AddControllers(); services.AddSwaggerGen(c => diff --git a/AlfaPrentice/WeatherForecast.cs b/dotnet/AlfaPrentice/WeatherForecast.cs similarity index 100% rename from AlfaPrentice/WeatherForecast.cs rename to dotnet/AlfaPrentice/WeatherForecast.cs diff --git a/AlfaPrentice/appsettings.Development.json b/dotnet/AlfaPrentice/appsettings.Development.json similarity index 100% rename from AlfaPrentice/appsettings.Development.json rename to dotnet/AlfaPrentice/appsettings.Development.json diff --git a/AlfaPrentice/appsettings.json b/dotnet/AlfaPrentice/appsettings.json similarity index 100% rename from AlfaPrentice/appsettings.json rename to dotnet/AlfaPrentice/appsettings.json diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.exe diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb diff --git a/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 AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.json diff --git a/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/BouncyCastle.Crypto.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Google.Protobuf.dll diff --git a/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 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/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 AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/K4os.Compression.LZ4.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/K4os.Hash.xxHash.dll diff --git a/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 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/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 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/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 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/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.Bcl.HashCode.dll diff --git a/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 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/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll diff --git a/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 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/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Microsoft.OpenApi.dll diff --git a/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/MySql.Data.EntityFrameworkCore.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/MySql.Data.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Newtonsoft.Json.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/NuGet.Frameworks.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Renci.SshNet.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/SshNet.Security.Cryptography.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.AttributedModel.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Convention.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Hosting.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.Runtime.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Composition.TypedParts.dll diff --git a/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 AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll diff --git a/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 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/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 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/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 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/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 AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Ubiety.Dns.Core.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/Zstandard.Net.dll diff --git a/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/appsettings.Development.json diff --git a/AlfaPrentice/bin/Debug/net5.0/appsettings.json b/dotnet/AlfaPrentice/bin/Debug/net5.0/appsettings.json similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/appsettings.json rename to dotnet/AlfaPrentice/bin/Debug/net5.0/appsettings.json diff --git a/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll b/dotnet/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll rename to dotnet/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll diff --git a/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/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 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/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.deps.json diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.exe diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.pdb diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.dev.json diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/AlfaPrentice.runtimeconfig.json diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll diff --git a/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 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/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 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/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 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/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll diff --git a/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 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/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 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/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/MySqlConnector.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll diff --git a/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 AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json diff --git a/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json b/dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json similarity index 100% rename from AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json rename to dotnet/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json b/dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json similarity index 100% rename from AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json rename to dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props b/dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props similarity index 100% rename from AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props rename to dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets b/dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets similarity index 100% rename from AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets rename to dotnet/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets diff --git a/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 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/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfo.cs diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CopyComplete diff --git a/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 AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache diff --git a/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 AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt diff --git a/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache new file mode 100644 index 0000000..8b20cae Binary files /dev/null and b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache differ diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb b/dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb rename to dotnet/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb diff --git a/AlfaPrentice/obj/Debug/net5.0/apphost.exe b/dotnet/AlfaPrentice/obj/Debug/net5.0/apphost.exe similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/apphost.exe rename to dotnet/AlfaPrentice/obj/Debug/net5.0/apphost.exe diff --git a/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll b/dotnet/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll rename to dotnet/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll diff --git a/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 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/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 AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml rename to dotnet/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.xml diff --git a/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 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/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CopyComplete diff --git a/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 AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.CoreCompileInputs.cache diff --git a/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 AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.dll diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.genruntimeconfig.cache diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.pdb diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe b/dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe similarity index 100% rename from AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/apphost.exe diff --git a/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 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/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 AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml rename to dotnet/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml diff --git a/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 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/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache similarity index 100% rename from AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache rename to dotnet/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache diff --git a/AlfaPrentice/obj/project.assets.json b/dotnet/AlfaPrentice/obj/project.assets.json similarity index 100% rename from AlfaPrentice/obj/project.assets.json rename to dotnet/AlfaPrentice/obj/project.assets.json diff --git a/AlfaPrentice/obj/project.nuget.cache b/dotnet/AlfaPrentice/obj/project.nuget.cache similarity index 100% rename from AlfaPrentice/obj/project.nuget.cache rename to dotnet/AlfaPrentice/obj/project.nuget.cache