コード例 #1
0
ファイル: ProductController.cs プロジェクト: gvhung/CMS
        public ActionResult Create1(ProductCreateModel m)
        {
            Product p = AutoMapper.Mapper.Map <Product>(m);

            ProductBiz productBiz = new ProductBiz();

            productBiz.AddProduct(p);
            return(View(m));
        }