public static TPersonForSerialization Deserialize(CDomContainer container)
        {
            TPersonForSerialization person = new TPersonForSerialization();

            person.FirstName = container.GetString("FirstName");
            person.LastName = container.GetString("LastName");
            person.Age = container.GetInt32("Age");
            person.Weight = container.GetInt32("Weight");
            person.Height = container.GetInt32("Height");

            CDomSection employeeSection = container.GetSection("Employee");
            person.EmployeeInfo = new TEmployeeInfo()
            {
                CompanyName = employeeSection.GetString("Company"),
                Position = employeeSection.GetString("Position"),
                EmployeeId = employeeSection.GetInt32("EmployeeId")
            };

            return person;
        }