Exemplo n.º 1
0
        private void SetupOrganizationBigBoss(XElement bigBoss, RarFIO fio)
        {
            if (bigBoss == null || fio == null)
            {
                return;
            }

            fio.Surname    = GetElementStringValue(bigBoss.Element("Фамилия"));
            fio.Name       = GetElementStringValue(bigBoss.Element("Имя"));
            fio.Middlename = GetElementStringValue(bigBoss.Element("Отчество"));    //необязательный
        }
Exemplo n.º 2
0
 public RarOurCompany() : base()
 {
     Director        = new RarFIO();
     Accountant      = new RarFIO();
     SubdevisionList = new List <RarSubdevision>();
 }
Exemplo n.º 3
0
 public RarFIO(RarFIO fio)
 {
     Name       = fio.Name;
     Surname    = fio.Surname;
     Middlename = fio.Middlename;
 }