public IActionResult List() { MotivoNaoVendaBLL BLL = new MotivoNaoVendaBLL(); string mensagemErro; if (HttpContext.Request.Cookies["USUARIO"] == null) { return(RedirectToAction("Login", "Login", new { urlRetorno = HttpContext.Request.Path })); } List <MotivoNaoVenda> listaMotivos = BLL.getMotivosNaoVenda(null, "", out mensagemErro); return(View(listaMotivos)); }
public IActionResult Edit(int?codigoMotivo) { MotivoNaoVendaBLL BLL = new MotivoNaoVendaBLL(); string mensagemErro; if (codigoMotivo != null && codigoMotivo != 0) { MotivoNaoVenda motivoCorrente = BLL.getMotivosNaoVenda((int)codigoMotivo, "", out mensagemErro).FirstOrDefault(); return(View(motivoCorrente)); } else { return(View()); } }