Ejemplo n.º 1
0
        public ActionResult ChitietAuction(Sanphamcanmua a)
        {
            SanphamcanmuaModel sp = new SanphamcanmuaModel();

            a.SanPham = sp.getSP(a.MaSP);
            return(View(a));
        }
Ejemplo n.º 2
0
        public ActionResult ChitietSanphamAuction(int spcm)
        {
            SanphamcanmuaModel spmodel = new SanphamcanmuaModel();
            Sanphamcanmua      temp    = spmodel.getSanphamcanmua(spcm);

            temp.SanPham = spmodel.getSP(temp.MaSP);
            return(View(temp));
        }