// To protect from overposting attacks, please enable the specific properties you want to bind to, for // more details see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { var total = QuoteTotal.get(Quote.depth, Quote.width, Quote.surfaceMaterial, Quote.drawers, Quote.rushDelivery); Quote.total = total; if (!ModelState.IsValid) { return(Page()); } _context.Attach(Quote).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!QuoteExists(Quote.ID)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
// To protect from overposting attacks, please 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()); } var total = QuoteTotal.get(Quote.depth, Quote.width, Quote.surfaceMaterial, Quote.drawers, Quote.rushDelivery); Quote.total = total; _context.Quote.Add(Quote); await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); }