From ba31cd89df6674e58fdae324a82ed0353cb5e96d Mon Sep 17 00:00:00 2001 From: MaxchilKH Date: Sun, 26 Jul 2020 00:50:46 +0200 Subject: [PATCH] move crap around --- .../Model}/Address.cs | 0 .../Model}/BranchOffice.cs | 0 .../Model}/Company.cs | 0 .../Model}/Course.cs | 0 .../Model}/DeanAcceptance.cs | 0 .../Model}/Edition.cs | 3 +-- .../Model}/Insurance.cs | 0 .../Model}/Intern.cs | 0 .../Model}/Internship.cs | 0 .../Model}/InternshipProgramEntry.cs | 0 .../Model}/InternshipType.cs | 0 .../Model}/Mentor.cs | 0 .../Model}/RangeOfActivities.cs | 0 .../Model}/Report.cs | 0 .../InternshipSystem.Core.Tests.csproj | 3 ++- 15 files changed, 3 insertions(+), 3 deletions(-) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Address.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/BranchOffice.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Company.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Course.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/DeanAcceptance.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Edition.cs (86%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Insurance.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Intern.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Internship.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/InternshipProgramEntry.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/InternshipType.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Mentor.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/RangeOfActivities.cs (100%) rename src/{InternshipSystem.Core => InternshipSystem.Repository/Model}/Report.cs (100%) diff --git a/src/InternshipSystem.Core/Address.cs b/src/InternshipSystem.Repository/Model/Address.cs similarity index 100% rename from src/InternshipSystem.Core/Address.cs rename to src/InternshipSystem.Repository/Model/Address.cs diff --git a/src/InternshipSystem.Core/BranchOffice.cs b/src/InternshipSystem.Repository/Model/BranchOffice.cs similarity index 100% rename from src/InternshipSystem.Core/BranchOffice.cs rename to src/InternshipSystem.Repository/Model/BranchOffice.cs diff --git a/src/InternshipSystem.Core/Company.cs b/src/InternshipSystem.Repository/Model/Company.cs similarity index 100% rename from src/InternshipSystem.Core/Company.cs rename to src/InternshipSystem.Repository/Model/Company.cs diff --git a/src/InternshipSystem.Core/Course.cs b/src/InternshipSystem.Repository/Model/Course.cs similarity index 100% rename from src/InternshipSystem.Core/Course.cs rename to src/InternshipSystem.Repository/Model/Course.cs diff --git a/src/InternshipSystem.Core/DeanAcceptance.cs b/src/InternshipSystem.Repository/Model/DeanAcceptance.cs similarity index 100% rename from src/InternshipSystem.Core/DeanAcceptance.cs rename to src/InternshipSystem.Repository/Model/DeanAcceptance.cs diff --git a/src/InternshipSystem.Core/Edition.cs b/src/InternshipSystem.Repository/Model/Edition.cs similarity index 86% rename from src/InternshipSystem.Core/Edition.cs rename to src/InternshipSystem.Repository/Model/Edition.cs index 05aefb5..6e237a9 100644 --- a/src/InternshipSystem.Core/Edition.cs +++ b/src/InternshipSystem.Repository/Model/Edition.cs @@ -9,7 +9,6 @@ namespace InternshipSystem.Core public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } public DateTime IPPDeadlineDate { get; set; } - public List Subjects { get; set;} - public List Internships { get; set; } + public List Subjects { get; set; } } } \ No newline at end of file diff --git a/src/InternshipSystem.Core/Insurance.cs b/src/InternshipSystem.Repository/Model/Insurance.cs similarity index 100% rename from src/InternshipSystem.Core/Insurance.cs rename to src/InternshipSystem.Repository/Model/Insurance.cs diff --git a/src/InternshipSystem.Core/Intern.cs b/src/InternshipSystem.Repository/Model/Intern.cs similarity index 100% rename from src/InternshipSystem.Core/Intern.cs rename to src/InternshipSystem.Repository/Model/Intern.cs diff --git a/src/InternshipSystem.Core/Internship.cs b/src/InternshipSystem.Repository/Model/Internship.cs similarity index 100% rename from src/InternshipSystem.Core/Internship.cs rename to src/InternshipSystem.Repository/Model/Internship.cs diff --git a/src/InternshipSystem.Core/InternshipProgramEntry.cs b/src/InternshipSystem.Repository/Model/InternshipProgramEntry.cs similarity index 100% rename from src/InternshipSystem.Core/InternshipProgramEntry.cs rename to src/InternshipSystem.Repository/Model/InternshipProgramEntry.cs diff --git a/src/InternshipSystem.Core/InternshipType.cs b/src/InternshipSystem.Repository/Model/InternshipType.cs similarity index 100% rename from src/InternshipSystem.Core/InternshipType.cs rename to src/InternshipSystem.Repository/Model/InternshipType.cs diff --git a/src/InternshipSystem.Core/Mentor.cs b/src/InternshipSystem.Repository/Model/Mentor.cs similarity index 100% rename from src/InternshipSystem.Core/Mentor.cs rename to src/InternshipSystem.Repository/Model/Mentor.cs diff --git a/src/InternshipSystem.Core/RangeOfActivities.cs b/src/InternshipSystem.Repository/Model/RangeOfActivities.cs similarity index 100% rename from src/InternshipSystem.Core/RangeOfActivities.cs rename to src/InternshipSystem.Repository/Model/RangeOfActivities.cs diff --git a/src/InternshipSystem.Core/Report.cs b/src/InternshipSystem.Repository/Model/Report.cs similarity index 100% rename from src/InternshipSystem.Core/Report.cs rename to src/InternshipSystem.Repository/Model/Report.cs diff --git a/test/InternshipSystem.Core.Tests/InternshipSystem.Core.Tests.csproj b/test/InternshipSystem.Core.Tests/InternshipSystem.Core.Tests.csproj index a689a18..0548e14 100644 --- a/test/InternshipSystem.Core.Tests/InternshipSystem.Core.Tests.csproj +++ b/test/InternshipSystem.Core.Tests/InternshipSystem.Core.Tests.csproj @@ -6,10 +6,11 @@ false - + +