public IActionResult Edit(Kategori entity)
 {
     repo.Update(entity);
     return(RedirectToAction(nameof(Index)));
 }
Example #2
0
 public async Task Update(Menu entity)
 {
     await MenuRepository.Update(entity);
 }
Example #3
0
 public async Task Update(Store entity)
 {
     await StoreRepository.Update(entity);
 }