1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
using System;
using System.Collections.Generic;
 
namespace CVProject
{
public partial class MyLife : Life
{
public void AboutMe()
{
LifeElement lifeElement = new LifeElement()
{
NameSurname = "Adem GÜRLER",
BirthDay = new DateTime(01, February),
City = City.Antalya,
EMail = "adem@ademgurler.com",
Instagram = "adem_gurler"
Facebook = "ademgurler"
Skype = "ademgurler"
};
 
EducationElement highSchool = GetHighSchoolEducation();
EducationElement university = GetUniversityEducation();
 
List<string> skills = GetSkills();
 
List<Language> languages = GetLanguages();
 
List<Job> jobs = GetJobs();
Job currentJob = null;
 
}
 
public EducationElement GetHighSchoolEducation()
{
EducationElement highSchool = new HighSchoolElement();
highSchool.Name = "Korkuteli METEM Highschool";
highSchool.YearOfStudy = "09/2006–06/2010";
highSchool.EducationDepartment = "Information Technologies";
return highSchool;
}
 
public EducationElement GetUniversityEducation()
{
EducationElement university = new UniversityElement();
university.Name = "Mehmet Akif Ersoy University";
university.YearOfStudy = "2010 - 2012";
university.EducationDepartment = "Computer Programming";
return university;
}
 
public EducationElement GetUniversityEducation2()
{
EducationElement university = new UniversityElement();
university.Name = "Anatolian University";
university.YearOfStudy = "2010 - 2015";
university.EducationDepartment = "Open Education - Business Administration";
return university;
}
 
public List<string> GetSkills()
{
List<string> skills = new List<string>()
{
"PHP - (Expert)",
"MY SQL",
"PDO",
"ASP.NET",
"C#",
"JAVA",
"CodeIgniter & Laravel & Zend Freamwork",
"PHP",
"HTML",
"CSS",
"JQUERY",
"Photoshop",
};
return skills;
}
 
public List<Language> GetLanguages()
{
List<Language> languages = new List<Language>();
languages.Add(new Language() {
Name = "Turkish",
Writing = Level.Native,
Listening = Level.Native,
Speaking = Level.Native,
});
 
languages.Add(new Language() {
Name = "English",
Writing = Level.Well,
Listening = Level.Well,
Speaking = Level.Average,
});
return languages;
}
 
//Thank you for reading
}
}