Beispiel #1
0
        internal IProfile LoadProfile(PomElement element)
        {
            var profile = _dataFactory.CreateProfile();

            profile.Id = element.ReadElementValueOrNull("id");
            LoadBuildContainer(element, profile);
            return(profile);
        }