public async Task <IActionResult> PutProductImage([FromRoute] uint id, [FromBody] ProductImage productImage) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != productImage.Id) { return(BadRequest()); } _context.Entry(productImage).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductImageExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> Create([Bind("Id,DateUpdated,FileName,ImageThumb,ImageFull")] ProductImage productImage) { if (ModelState.IsValid) { _context.Add(productImage); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(productImage)); }
public async Task <IActionResult> Create([Bind("Id,IsDiscontinued,AssociatedCategoryId,AssociatedSnapshotTypeId,AssociatedGroupId,AssociatedScreenId,AssociatedImageId,AssociatedRecycleId,MerchantNumber,ProductDescription,AiPartNumber,ManufactureNumber,ManufactureName,MfgUrl,MfgManualUrl,AssociatedPrimaryVendorId,AssociatedSecondaryVendorId,AssociatedTertiaryVendorId,Retail,Cost,AdditionalCost,DefaultPriority,IsTaxable,IsRecycleFee,ItemsAssociated,IsExcludedDesAinumOverrwrite,CostVerificationBy")] Product product) { if (ModelState.IsValid) { _context.Add(product); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(product)); }
public async Task <bool> SaveChangesAsync() { return(await _context.SaveChangesAsync() > 0); }
public async Task <bool> SaveChangesAsync() { //return true if 1 or more entities are changed return(await _context.SaveChangesAsync() > 0); }