rsschool-cv

Andrey Barabolya

About me

I am 38 years old. I live in the Republic of Belarus, Mogilev city. Higher technical education. Responsible, goal-oriented, easily trained. There is experience in developing applications in C #, for personal use, to facilitate repetitive actions. I learned about this platform from a friend, read reviews, decided to try my skills in Javascript.

Education

University: BELARUSIAN-RUSSIAN UNIVERSITY Speciality: automated information processing systems visit the university website

Work experience

Могилевгражданароект 2009 - 2012

Languages

English - A2

C# Certificate

Code Example

private void companyIdValue_SelectedIndexChanged(object sender, EventArgs e)
        {
            var people = from p in db.People
                         join c in db.Companies on p.CompanyId equals c.CompanyId
                         join pos in db.Positions on p.PositionId equals pos.PositionId
                         join g in db.Groups on p.GroupId equals g.GroupId
                         where p.CompanyId == companyIdValue.SelectedIndex+1
                         select new { Фамилия = p.Secondname, Имя = p.Firstname,
                                       Отчество = p.Surname, Компания = c.Name,
                                       Должность = pos.Name, Группа = g.Name };
            employyesDataGridView.DataSource = people.ToList();
        }