public async Task <IActionResult> PutProduct([FromRoute] Guid id, [FromBody] Product product) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != product.Id) { return(BadRequest()); } _context.Entry(product).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutEdmin([FromRoute] int id, [FromBody] Edmin edmin) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != edmin.edminId) { return(BadRequest()); } _context.Entry(edmin).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EdminExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IHttpActionResult> PutProduct(int id, Product product) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != product.Id) { return(BadRequest()); } db.Entry(product).State = EntityState.Modified; try { await db.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductExists(id)) { return(NotFound()); } else { throw; } } return(StatusCode(HttpStatusCode.NoContent)); }
public async Task <IActionResult> Create([Bind("Id,Name,Price")] Produit produit) { if (ModelState.IsValid) { _context.Add(produit); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(produit)); }
public async Task <IActionResult> Create([Bind("Id,Title,ReleaseDate,Genre")] Book book) { if (ModelState.IsValid) { _context.Add(book); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(book)); }
public async Task <IActionResult> Create([Bind("ID,Nome,Sobrenome,RA,Curso,Status,DataInicio,DataTermino,Email,Telefone,Escola,Endereço,CPF")] Aluno aluno) { if (ModelState.IsValid) { _context.Add(aluno); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(aluno)); }
public async Task <IActionResult> Create([Bind("ID,tytul,data_wydania,gatunek,cena,ocena")] Game game) { if (ModelState.IsValid) { _context.Add(game); await _context.SaveChangesAsync(); return(RedirectToAction("Index")); } return(View(game)); }
public async Task <IActionResult> Create([Bind("Id,Nome")] Departments departments) { if (ModelState.IsValid) { _context.Add(departments); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(departments)); }
public async Task <IActionResult> Create([Bind("Id,Name")] Author author) { if (ModelState.IsValid) { _context.Add(author); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(author)); }
public async Task RemoveCredentialsByUsername(string username) { var items = await _applicationDbContext.FidoStoredCredential.Where(c => c.Username == username).ToListAsync(); if (items != null) { foreach (var fido2Key in items) { _applicationDbContext.FidoStoredCredential.Remove(fido2Key); } ; await _applicationDbContext.SaveChangesAsync(); } }
public async Task <ActionResult> Index(HttpPostedFileBase file) { if (file?.ContentLength > 0) { var pictureName = Guid.NewGuid().ToString(); pictureName += Path.GetExtension(file.FileName); var route = Server.MapPath(serverFolderPath); route = route + "/" + pictureName; file.SaveAs(route); var emoPicture = await emoHelper.DetectAndExtracFacesAsync(file.InputStream); emoPicture.Name = file.FileName; emoPicture.Path = $"{serverFolderPath}/{pictureName}"; db.EmoPictures.Add(emoPicture); await db.SaveChangesAsync(); return(RedirectToAction("Details", "EmoPictures", new { Id = emoPicture.Id })); } return(View()); }