Exemplo n.º 1
0
 public ProductModels()
 {
     db = new ShopDbContext();
 }
Exemplo n.º 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;
        }
Exemplo n.º 3
0
 public ProductCategoryModels()
 {
     db = new ShopDbContext();
 }