コード例 #1
0
ファイル: ProductModels.cs プロジェクト: testerNumber1/Shop
 public ProductModels()
 {
     db = new ShopDbContext();
 }
コード例 #2
0
        public ActionResult GetImage(int id)
        {
            ShopDbContext db = new ShopDbContext();
            Product hinhanh = db.Products.Find(id);

            HinhAnhResult result = new HinhAnhResult(hinhanh.Image);
            return result;
        }
コード例 #3
0
 public ProductCategoryModels()
 {
     db = new ShopDbContext();
 }