Exemple #1
0
 private void prerequisites(SyllabusDescription description, Table generalInfoTable)
 {
     generalInfoTable.AddCell(
         PdfStructures.generalInfoCell(
             "1.4 Wymagania wstępne:",
             description.Prerequisites));
 }
Exemple #2
0
 private void employmentOpportinities(SyllabusDescription description, Table generalInfoTable)
 {
     generalInfoTable.AddCell(
         PdfStructures.generalInfoCell(
             "1.6 Sylwetka absolwenta, możliwości zatrudnienia:",
             description.EmploymentOpportunities));
 }
Exemple #3
0
 private void possibilityOfContinuation(SyllabusDescription description, Table generalInfoTable)
 {
     generalInfoTable.AddCell(
         PdfStructures.generalInfoCell(
             "1.7 Możliwość kontynuacji studiów:",
             description.PossibilityOfContinuation));
 }
Exemple #4
0
 private void universityMission(Table generalInfoTable)
 {
     generalInfoTable.AddCell(
         PdfStructures.generalInfoCell(
             "1.8 Wskazanie związku z misją uczelni i strategią jej rozwoju:",
             PdfStructures.Lorem));                 // ToDo: coś z tym zrobić, usunąć albo nie wiem
 }
Exemple #5
0
 private void ectsToFinishStudy(SyllabusDescription description, Table generalInfoTable)
 {
     generalInfoTable.AddCell(
         PdfStructures.generalInfoCell(
             "1.2 Całkowita liczba punktów ECTS konieczna do ukończenia studiów na danym poziomie:",
             description.Ects.ToString(),
             true));
 }
Exemple #6
0
 private void hoursTotal(Table generalInfoTable)
 {
     generalInfoTable.AddCell(
         PdfStructures.generalInfoCell(
             "1.3 Łączna liczba godzin zajęć:",
             "1020", // TODO: znaleźć pole od tego
             true));
 }
Exemple #7
0
 private void titleAfterGraduation(SyllabusDescription description, Table generalInfoTable)
 {
     generalInfoTable.AddCell(
         PdfStructures.generalInfoCell(
             "1.5 Tytuł zawodowy nadawany po zakończeniu studiów:",
             EnumTranslator.Translate(description.ProfessionalTitleAfterGraduation.ToString()),
             true));
 }
Exemple #8
0
 private void numberOfSemesters(SyllabusDescription description, Table generalInfoTable)
 {
     generalInfoTable.AddCell(PdfStructures.generalInfoCell("1.1 Liczba semestrów:",
                                                            description.NumOfSemesters.ToString(),
                                                            true));
 }