Advertisement
Guest User

CV Nikolay Kusch

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