public ActionResult Save(CaraterAtendimentoDto model) { if (ModelState.IsValid) { var CaraterAtendimento = new CaraterAtendimento(); _CaraterAtendimento.Save(model); return(RedirectToAction("List")); } else { return(RedirectToAction("Create", model)); } }
public CaraterAtendimentoController() { _CaraterAtendimento = new CaraterAtendimento(); }