Advertisement
Guest User

CV Nikolay Kusch

a guest
Feb 22nd, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.84 KB | None | 0 0
  1. using System.Collections.Generic;
  2.  
  3. namespace CV
  4. {
  5.     class NikolayKusch : Programmer
  6.     {
  7.         string birthDate = "21.02.1993";
  8.         string phone = "+380636190072";
  9.         string email = "dev.kusch@gmail.com";
  10.         string LinkedInProfile = "https://www.linkedin.com/in/nikolaykusch/";
  11.         string skype = "dentarius21@yandex.ua"; //search by email
  12.         //////////////////////////////////////////////////////////////////////////////////////////
  13.         List<Education> education = new List<Education>
  14.         {
  15.             new Education
  16.             {
  17.                 school = "Cherkasy polytechnical school",
  18.                 fieldOfStudy = "Software development", degree = "Junior Specialist",
  19.                 startDate = "2008", endDate = "2012"    
  20.             },
  21.             new Education
  22.             {
  23.                 school = "National Aerospace University -'Kharkiv Aviation Institute'",
  24.                 fieldOfStudy = "Software Engineering", degree = "Bachelor’s Degree",
  25.                 startDate = "2012", endDate = "2015"
  26.             },
  27.             new Education
  28.             {
  29.                 school = "Cherkasy polytechnical school",
  30.                 fieldOfStudy = "Software systems", degree = "Specialist",
  31.                 startDate = "2015", endDate = "2016"
  32.             }
  33.         };
  34.         //////////////////////////////////////////////////////////////////////////////////////////
  35.         List<Experience> experience = new List<Experience>
  36.         {
  37.             new Experience
  38.             {
  39.                 title = "Programming freelance", description = "Windows 8/8.1/10/UWP application development",
  40.                 startPeriod = "May 2015", endPeriod = "Present",
  41.                 projects = new List<Projects>
  42.                 {
  43.                     new Projects
  44.                     {
  45.                         name = "ВК Музыкайф",
  46.                         description = "Music player for Windows Phone 8/8.1 using the VK Api",
  47.                         link = "https://goo.gl/9VR2Lb"
  48.                         //Unfortunately, the app does not work after the change of policy regarding the VK audio.
  49.                     }
  50.                 }
  51.             },
  52.             new Experience
  53.             {
  54.                 title = "Design freelance", description = "UI/UI design, print design, branding",
  55.                 portfolio = "https://goo.gl/Z1Ibi7"
  56.             },
  57.             new Experience
  58.             {
  59.                 title = "Verification Specialist", company = "Infuse Media Corporation",
  60.                 description = "Information retrieval, processing, analysis, verification"
  61.             }
  62.         };
  63.         //////////////////////////////////////////////////////////////////////////////////////////
  64.         Certifications certification = new Certifications
  65.         {
  66.             name = "Основи тестування програмного забезпечення",
  67.             authority = "Prometheus, Lviv IT School",
  68.             licenseNumber = "72ad824b7d844bfa8fc21187f9065842",
  69.             url = "https://goo.gl/azhuxU"
  70.         };
  71.         //////////////////////////////////////////////////////////////////////////////////////////
  72.         List<Languages> languages = new List<Languages>
  73.         {
  74.             new Languages
  75.             {
  76.                 language = "Ukrainian", proficiency = "Native"
  77.             },
  78.             new Languages
  79.             {
  80.                 language = "Russian",   proficiency = "Native"
  81.             },
  82.             new Languages
  83.             {
  84.                 language = "English",   proficiency = "Limited working"
  85.             },
  86.         };
  87.         //////////////////////////////////////////////////////////////////////////////////////////
  88.         List<string> Skills = new List<string> { "C#", ".Net", "Win8/8.1/10/UWP", "XAML", "UI/UX" };
  89.     }
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement