// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Attach(ProductionTime).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductionTimeExists(ProductionTime.ProductionTimeID)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } Desk.SurfaceMaterial = _context.SurfaceMaterial.Find(Desk.SurfaceMaterialID); Desk.ProductionTime = _context.ProductionTime.Find(Desk.ProductionTimeID); Desk.Amount = getDeskCost(Desk); _context.Attach(Desk).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DeskExists(Desk.DeskID)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.ProductionTime.Add(ProductionTime); await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); }
// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.SurfaceMaterial.Add(SurfaceMaterial); await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Desk = await _context.Desk.FindAsync(id); if (Desk != null) { _context.Desk.Remove(Desk); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } ProductionTime = await _context.ProductionTime.FindAsync(id); if (ProductionTime != null) { _context.ProductionTime.Remove(ProductionTime); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } Desk.SurfaceMaterial = _context.SurfaceMaterial.Find(Desk.SurfaceMaterialID); Desk.ProductionTime = _context.ProductionTime.Find(Desk.ProductionTimeID); Desk.Amount = getDeskCost(Desk); _context.Desk.Add(Desk); await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } SurfaceMaterial = await _context.SurfaceMaterial.FindAsync(id); if (SurfaceMaterial != null) { _context.SurfaceMaterial.Remove(SurfaceMaterial); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }