public ActionResult CreateCopil(Copil copil) { _db.Copil.Add(copil); _db.SaveChanges(); ParinteCopil obj = new ParinteCopil(); obj.ParinteId = copil.ParinteId; obj.CopilId = copil.Id; _db.ParinteCopil.Add(obj); _db.SaveChanges(); return(RedirectToAction("Index", "Copil")); }
public IActionResult Update(int id, List <int> roles) { var temp = _db.LinkRolesMenus.Where(s => s.RolesId == id); foreach (var item in temp) { _db.LinkRolesMenus.Remove(item); } foreach (var role in roles) { _db.LinkRolesMenus.Add(new LinkRolesMenus { MenusId = role, RolesId = id }); } _db.SaveChanges(); return(Json(new { status = true, message = "Success!" })); }
public IActionResult Register(Parinte model) { Parinte asd = new Parinte(); asd = model; asd.RolesId = 7; _db.Parinte.Add(asd); _db.SaveChanges(); return(RedirectToAction("Login", "Security")); }
public ActionResult ProfileEdit(Parinte parinte) { Parinte p = _db.Parinte.Where(s => s.Id == parinte.Id).FirstOrDefault(); p.Cnp = parinte.Cnp; p.Nume = parinte.Nume; p.Prenume = parinte.Prenume; p.Varsta = parinte.Varsta; p.Sex = parinte.Sex; p.Telefon = parinte.Telefon; p.Localitate = parinte.Localitate; p.Judet = parinte.Judet; p.Adresa = parinte.Adresa; _db.SaveChanges(); return(RedirectToAction("Index", "User")); }
public bool Delete(int id) { try { Admins adm = _db.Admins.Where(s => s.Id == id).First(); _db.Admins.Remove(adm); _db.SaveChanges(); return(true); } catch (Exception) { return(false); } }
public ActionResult CreateAsociatie(Asociatie asoc) { _db.Asociatie.Add(asoc); _db.SaveChanges(); AsocCopil obj = new AsocCopil(); obj.AsocId = asoc.Id; obj.CopilId = asoc.CopilId; _db.AsocCopil.Add(obj); _db.SaveChanges(); AsocParinte obj2 = new AsocParinte(); obj2.AsociatieId = asoc.Id; obj2.ParinteId = asoc.ParinteId; _db.AsocParinte.Add(obj2); _db.SaveChanges(); return(RedirectToAction("Index", "Asociatie")); }
public ActionResult CreateParinte(Parinte parinte) { _db.Parinte.Add(parinte); _db.SaveChanges(); return(RedirectToAction("Index", "Parinte")); }