public ActionResult DeleteConfirmed(string id)
        {
            Adm_Prefix adm_Prefix = db.Adm_Prefixes.Find(id);

            db.Adm_Prefixes.Remove(adm_Prefix);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
        public ActionResult Create([Bind(Include = "Prefix")] Adm_Prefix adm_Prefix)
        {
            if (adm_Prefix.Prefix.Contains("."))
            {
                ModelState.AddModelError("Prefix", "Prefix cannot contain the '.' character");
            }
            if (ModelState.IsValid)
            {
                db.Adm_Prefixes.Add(adm_Prefix);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(adm_Prefix));
        }
        //// GET: Adm_Prefix/Edit/5
        //public ActionResult Edit(string id)
        //{
        //    if (id == null)
        //    {
        //        return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
        //    }
        //    Adm_Prefix adm_Prefix = db.Adm_Prefixes.Find(id);
        //    if (adm_Prefix == null)
        //    {
        //        return HttpNotFound();
        //    }
        //    return View(adm_Prefix);
        //}

        //// POST: Adm_Prefix/Edit/5
        //// To protect from overposting attacks, please enable the specific properties you want to bind to, for
        //// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
        //[HttpPost]
        //[ValidateAntiForgeryToken]
        //public ActionResult Edit([Bind(Include = "Prefix")] Adm_Prefix adm_Prefix)
        //{
        //    if (ModelState.IsValid)
        //    {
        //        db.Entry(adm_Prefix).State = EntityState.Modified;
        //        db.SaveChanges();
        //        return RedirectToAction("Index");
        //    }
        //    return View(adm_Prefix);
        //}

        // GET: Adm_Prefix/Delete/5
        public ActionResult Delete(string id)
        {
            System.Diagnostics.Debug.WriteLine("String id is: " + id);

            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            Adm_Prefix adm_Prefix = db.Adm_Prefixes.Find(id);

            if (adm_Prefix == null)
            {
                return(HttpNotFound());
            }
            return(View(adm_Prefix));
        }