예제 #1
0
        // GET: GeneralCoins/Delete/5
        public ActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            GeneralCoin generalCoin = db.GeneralCoins.Find(id);

            if (generalCoin == null)
            {
                return(HttpNotFound());
            }

            var coins = db.CoinsCollections.Where(m => m.GeneralCoinId == generalCoin.GeneralCoinId);

            if (coins.Count() <= 0)
            {
                db.GeneralCoins.Remove(generalCoin);
                db.SaveChanges();
            }
            else
            {
                foreach (var item in coins)
                {
                    CoinsCollection moneda = item;
                    db.CoinsCollections.Remove(moneda);
                }

                db.GeneralCoins.Remove(generalCoin);
                db.SaveChanges();
            }
            return(RedirectToAction("Index"));
        }
예제 #2
0
        // GET: GeneralCoins/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            GeneralCoin generalCoin = db.GeneralCoins.Find(id);

            if (generalCoin == null)
            {
                return(HttpNotFound());
            }
            return(View(generalCoin));
        }
예제 #3
0
        // GET: GeneralCoins/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            GeneralCoin generalCoin = db.GeneralCoins.Find(id);

            if (generalCoin == null)
            {
                return(HttpNotFound());
            }

            ViewBag.Material = new SelectList(db.GeneralCoins.Select(m => m.Material).Distinct(), generalCoin.Material);
            ViewBag.Value    = new SelectList(db.GeneralCoins.Select(m => m.Value).Distinct(), generalCoin.Value);
            ViewBag.Shape    = new SelectList(db.GeneralCoins.Select(m => m.Shape).Distinct(), generalCoin.Shape);


            return(View(generalCoin));
        }
예제 #4
0
        public ActionResult Create([Bind(Include = "GeneralCoinId,Value,Diameter,Weight,Thickness,Shape,Notes,Material")] GeneralCoin generalCoin, HttpPostedFileBase File)
        {
            if ((File != null) && (File.ContentLength > 0))
            {
                string fileName = generalCoin.Value.ToString() + "-pound.png";
                //string fileName = File.FileName;
                var path = Path.Combine(Server.MapPath("~/Content/Coins"), fileName);

                File.SaveAs(path);
            }

            if (ModelState.IsValid)
            {
                db.GeneralCoins.Add(generalCoin);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(generalCoin));
        }
예제 #5
0
        public ActionResult Edit([Bind(Include = "GeneralCoinId,Value,Diameter,Weight,Thickness,Shape,Notes,Material")] GeneralCoin generalCoin, string Image, HttpPostedFileBase File)
        {
            if ((File != null) && (File.ContentLength > 0))
            {
                string fileName = generalCoin.Value.ToString() + "-pound.png";
                //string fileName = File.FileName;
                var path = Path.Combine(Server.MapPath("~/Content/Coins"), fileName);

                File.SaveAs(path);
            }
            else
            {
                if (Image != null)
                {
                    if (!Image.Contains(generalCoin.Value.ToString()))
                    {
                        string imagePath   = Server.MapPath("~/Content/Coins");
                        var    oldFilePath = Path.Combine(imagePath, Image);
                        var    newFilePath = Path.Combine(imagePath, generalCoin.Value.ToString() + "-pound.png");
                        if (!System.IO.File.Exists(newFilePath))
                        {
                            System.IO.File.Copy(oldFilePath, newFilePath);
                        }
                        else
                        {
                            System.IO.File.Create(newFilePath);
                        }
                    }
                }
            }

            if (ModelState.IsValid)
            {
                db.Entry(generalCoin).State = EntityState.Modified;
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }
            return(View(generalCoin));
        }