public async Task <IActionResult> Create([Bind("Name,Description")] Product product) { if (ModelState.IsValid) { _context.Add(product); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(product)); }
public async Task <bool> CreateAsync(Role role) { _dbContext.Add(role); await _dbContext.SaveChangesAsync(); return(true); }
public async Task <IActionResult> Create([Bind("Id,Type")] Role role) { if (ModelState.IsValid) { _context.Add(role); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(role)); }