public ActionResult Create(User user) { if (ModelState.IsValid) { db.Users.Add(user); db.SaveChanges(); UserHelper.CreateUserASP(user.UserName, "User"); if (user.PhotoFile != null) { var pic = string.Empty; var folder = "~/Content/Users"; var response = FilesHelper.UploadPhoto(user.PhotoFile, folder, string.Format("{0}.jpg", user.UserId)); if (response) { pic = string.Format("{0}/{1}.jpg", folder, user.UserId); user.Photo = pic; } } db.Entry(user).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.CityId = new SelectList(ComboHelper.GetCities(), "CityId", "Name", user.CityId); ViewBag.CompanyId = new SelectList(ComboHelper.GetCompanies(), "CompanyId", "Name", user.CompanyId); ViewBag.DepartmentsId = new SelectList(ComboHelper.GetDepartments(), "DepartmentsId", "Name", user.DepartmentsId); return(View(user)); }
public ActionResult Create(User user) { if (ModelState.IsValid) { db.Users.Add(user); db.SaveChanges(); UsersHelper.CreateUserASP(user.UserName, "User"); if (user.PhotoFile != null) { //configuring the logo path var pic = string.Empty; var folder = "~/Content/Users/"; //configuring the logo path var file = string.Format("{0}.jpg", user.UserId); var response = FileHelper.PhotoUpload(user.PhotoFile, folder, file); if (response == true) { pic = string.Format("{0}{1}", folder, file); user.Photo = pic; } //{0} = path (~/Content/Users/) //{1} = archive name } db.Entry(user).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.CityId = new SelectList(ComboHelper.GetCities(), "CityId", "Name", user.CityId); ViewBag.CompanyId = new SelectList(ComboHelper.GetCompanies(), "CompanyId", "Name", user.CompanyId); ViewBag.DepartmentsId = new SelectList(ComboHelper.GetDepartments(), "DepartmentsId", "Name", user.DepartmentsId); return(View(user)); }
// GET: Users/Create public ActionResult Create() { ViewBag.CityId = new SelectList(ComboHelper.GetCities(), "CityId", "Name"); ViewBag.CompanyId = new SelectList(ComboHelper.GetCompanies(), "CompanyId", "Name"); ViewBag.DepartmentsId = new SelectList(ComboHelper.GetDepartments(), "DepartmentsId", "Name"); return(View()); }
// GET: Users/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } User user = db.Users.Find(id); if (user == null) { return(HttpNotFound()); } ViewBag.CityId = new SelectList(ComboHelper.GetCities(), "CityId", "Name", user.CityId); ViewBag.CompanyId = new SelectList(ComboHelper.GetCompanies(), "CompanyId", "Name", user.CompanyId); ViewBag.DepartmentsId = new SelectList(ComboHelper.GetDepartments(), "DepartmentsId", "Name", user.DepartmentsId); return(View(user)); }
public ActionResult Edit(User user) { if (ModelState.IsValid) { if (user.PhotoFile != null) { //configuring the logo path var pic = string.Empty; var folder = "~/Content/Users/"; //configuring the logo path var file = string.Format("{0}.jpg", user.UserId); var response = FileHelper.PhotoUpload(user.PhotoFile, folder, file); if (response == true) { pic = string.Format("{0}{1}", folder, file); user.Photo = pic; } //{0} = path (~/Content/Users/) //{1} = archive name } var db2 = new ECommerceContext(); var currentÙser = db2.Users.Find(user.UserId); if (currentÙser.UserName != user.UserName) { UsersHelper.UpdateUserName(currentÙser.UserName, user.UserName); } db2.Dispose(); //finish db connection db.Entry(user).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.CityId = new SelectList(ComboHelper.GetCities(), "CityId", "Name", user.CityId); ViewBag.CompanyId = new SelectList(ComboHelper.GetCompanies(), "CompanyId", "Name", user.CompanyId); ViewBag.DepartmentsId = new SelectList(ComboHelper.GetDepartments(), "DepartmentsId", "Name", user.DepartmentsId); return(View(user)); }