About me

CV/Résumé (Code)
namespace FUNCTIDEV
{
    class SoftwareDeveloper : Applicant
    {
        // Motto.
        // Personality.

        SoftwareDeveloper()
        {
            this.Name = "Niklas Schmid";
            this.DayOfBirth = new DateTime( 1995, 9, 28 );
            this.Email = "nschmid.main@gmail.com";
        }

        WorkExperience[] GetExperience()
        {
            return new WorkExperience[]
            {
                new() { Period = "2019-2023", WorkPlace = "ABCDEFG" },
                new() { Period = "2019-2023", WorkPlace = "ABCDEFG" },
                new() { Period = "2019-2023", WorkPlace = "ABCDEFG" },
            };
        }

        Education[] GetEducation()
        {
            return new Education[]
            {
                new() { Period = "2019-2023", School = "ABCDEFG" },
                new() { Period = "2019-2023", School = "ABCDEFG" }
            };
        }

        string[] GetSkills()
        {
            return new string[]
            {
                "Skill 1", "Skill 2", "Skill 3", "Skill 4", "Skill 5"
            };
        }
    }
}