Example #1
0
 public ActionResult Edit([Bind(Include = "AttorneyId,FirstName,Lastname,Email,Description,Phone1,Phone2,AttorneyPhoto,WorkSector,LanguageId")] AttorneyTB attorneyTB, HttpPostedFileBase Photo, int id)
 {
     if (ModelState.IsValid)
     {
         var attorneyContents = db.AttorneyTBs.SingleOrDefault(m => m.AttorneyId == id);
         if (Photo != null)
         {
             if (System.IO.File.Exists(Server.MapPath(attorneyContents.AttorneyPhoto)))
             {
                 System.IO.File.Delete(Server.MapPath(attorneyContents.AttorneyPhoto));
             }
             WebImage img       = new WebImage(Photo.InputStream);
             FileInfo photoInfo = new FileInfo(Photo.FileName);
             string   newPhoto  = Guid.NewGuid().ToString() + photoInfo.Extension;
             img.Save("~/Uploads/AttorneyImg/" + newPhoto);
             attorneyContents.AttorneyPhoto = "/Uploads/AttorneyImg/" + newPhoto;
         }
         attorneyContents.Description = attorneyTB.Description;
         attorneyContents.WorkSector  = attorneyTB.WorkSector;
         attorneyContents.Lastname    = attorneyTB.Lastname;
         attorneyContents.FirstName   = attorneyTB.FirstName;
         attorneyContents.Email       = attorneyTB.Email;
         attorneyContents.Phone1      = attorneyTB.Phone1;
         attorneyContents.Phone2      = attorneyTB.Phone2;
         attorneyContents.LanguageId  = attorneyTB.LanguageId;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.LanguageId = new SelectList(db.LanguageTBs, "LanguageId", "CultureName", attorneyTB.LanguageId);
     return(View(attorneyTB));
 }
Example #2
0
        public ActionResult DeleteConfirmed(int id)
        {
            AttorneyTB attorneyTB = db.AttorneyTBs.Find(id);

            db.AttorneyTBs.Remove(attorneyTB);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Example #3
0
        // GET: SMAdm/Attorneys/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            AttorneyTB attorneyTB = db.AttorneyTBs.Find(id);

            if (attorneyTB == null)
            {
                return(HttpNotFound());
            }
            return(View(attorneyTB));
        }
Example #4
0
        // GET: SMAdm/Attorneys/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            AttorneyTB attorneyTB = db.AttorneyTBs.Find(id);

            if (attorneyTB == null)
            {
                return(HttpNotFound());
            }
            ViewBag.LanguageId = new SelectList(db.LanguageTBs, "LanguageId", "CultureName", attorneyTB.LanguageId);
            return(View(attorneyTB));
        }
Example #5
0
        public ActionResult Create([Bind(Include = "AttorneyId,FirstName,Lastname,Email,Description,Phone1,Phone2,AttorneyPhoto,WorkSector,LanguageId")] AttorneyTB attorneyTB, HttpPostedFileBase Photo)
        {
            if (ModelState.IsValid)
            {
                if (Photo != null)
                {
                    WebImage img       = new WebImage(Photo.InputStream);
                    FileInfo photoInfo = new FileInfo(Photo.FileName);
                    string   newPhoto  = Guid.NewGuid().ToString() + photoInfo.Extension;
                    img.Save("~/Uploads/AttorneyImg/" + newPhoto);
                    attorneyTB.AttorneyPhoto = "/Uploads/AttorneyImg/" + newPhoto;
                }
                db.AttorneyTBs.Add(attorneyTB);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            ViewBag.LanguageId = new SelectList(db.LanguageTBs, "LanguageId", "CultureName", attorneyTB.LanguageId);
            return(View(attorneyTB));
        }