From f3740ee414caa67aa51744c684ea819dc5d3482b Mon Sep 17 00:00:00 2001 From: Kacper Donat Date: Sat, 7 Nov 2020 15:26:40 +0100 Subject: [PATCH] Fix typo and references to entities --- src/InternshipSystem.Repository/DatabaseFiller.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/InternshipSystem.Repository/DatabaseFiller.cs b/src/InternshipSystem.Repository/DatabaseFiller.cs index 72dda98..4150806 100644 --- a/src/InternshipSystem.Repository/DatabaseFiller.cs +++ b/src/InternshipSystem.Repository/DatabaseFiller.cs @@ -131,7 +131,7 @@ namespace InternshipSystem.Repository }, new InternshipType { - Label = "Umowa o staż zpłatny", + Label = "Umowa o staż płatny", LabelEng = "Paid apprenticeship agreement", Description = "np. staż przemysłowy", DescriptionEng = "e.g. industrial apprenticeship", @@ -212,7 +212,7 @@ namespace InternshipSystem.Repository }, new EditionInternshipType { - InternshipType = Context.InternshipTypes.First(t => t.Label.Equals("Umowa zlecenie")) + InternshipType = Context.InternshipTypes.First(t => t.Label.Equals("Umowa zlecenia")) }, new EditionInternshipType { @@ -220,7 +220,7 @@ namespace InternshipSystem.Repository }, new EditionInternshipType { - InternshipType = Context.InternshipTypes.First(t => t.Label.Equals("Praktyka bezpłatna")) + InternshipType = Context.InternshipTypes.First(t => t.Label.Equals("Umowa o organizację praktyki")) } }, Internships = new List(), @@ -270,7 +270,7 @@ namespace InternshipSystem.Repository }, new EditionInternshipType { - InternshipType = Context.InternshipTypes.First(t => t.Label.Equals("Umowa zlecenie")) + InternshipType = Context.InternshipTypes.First(t => t.Label.Equals("Umowa zlecenia")) }, new EditionInternshipType { @@ -278,7 +278,7 @@ namespace InternshipSystem.Repository }, new EditionInternshipType { - InternshipType = Context.InternshipTypes.First(t => t.Label.Equals("Praktyka bezpłatna")) + InternshipType = Context.InternshipTypes.First(t => t.Label.Equals("Umowa o organizację praktyki")) } }, Internships = new List(),