public static Section Create(this SectionViewModel model)
        {
            var section = new Section();

            model.CopyTo(section);
            return(section);
        }