public IActionResult Snimi(GlumacDodajVM model) { if (ModelState.IsValid) { MyContext db = new MyContext(); string uniqueFileName = null; if (model.Photo != null) { string uploadsFolder = Path.Combine(_hostingEnvironment.WebRootPath, "images"); uniqueFileName = Guid.NewGuid().ToString() + "_" + model.Photo.FileName; string filePath = Path.Combine(uploadsFolder, uniqueFileName); model.Photo.CopyTo(new FileStream(filePath, FileMode.Create)); } Glumac g = new Glumac { AdresaSlike = uniqueFileName, BrojUgovora = model.Glumac.BrojUgovora, DatumRodjenja = model.Glumac.DatumRodjenja, Email = model.Glumac.Email, Ime = model.Glumac.Ime, Prezime = model.Glumac.Prezime }; db.Glumac.Add(g); db.SaveChanges(); db.Dispose(); return(RedirectToAction("Prikazi")); } return(View("Dodaj")); }
public IActionResult Dodaj() { MyContext db = new MyContext(); GlumacDodajVM model = new GlumacDodajVM() { Glumac = new Glumac() }; return(View(model)); }