public async Task <IActionResult> Create([Bind("StoreId, StoreName, StoreDescription, StoreAddress")] PetStoreModel petstore) { if (ModelState.IsValid) { _context.Add(petstore); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(petstore)); }
public async Task AddStore(PetStoreModel petStore) { petStoreContext.Stores.Add(petStore); await petStoreContext.SaveChangesAsync(); }
public async Task SaveChangesAsync() { await PSContext.SaveChangesAsync(); }