示例#1
0
        public static Brand Create(this BrandViewModel model)
        {
            var brand = new Brand();

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