public ActionResult EventoIndex() { using (EventoDAL dal = new EventoDAL()) { return(View(dal.ReadAll())); } }
public ActionResult ComissaoCreate() { using (EventoDAL dal = new EventoDAL()) { ViewBag.Eventos = dal.ReadAll(); } return(View()); }
public ActionResult ComissaoUpdate(int id) { using (ComissaoDAL dalC = new ComissaoDAL()) using (EventoDAL dalE = new EventoDAL()) { ViewBag.Eventos = dalE.ReadAll(); return(View(dalC.Read(id))); } }
public ActionResult AtividadeUpdate(int id) { using (ConferenteDAL dalC = new ConferenteDAL()) using (EventoDAL dalE = new EventoDAL()) using (TipoDAL dalT = new TipoDAL()) using (AtividadeDAL dalA = new AtividadeDAL()) { ViewBag.Tipos = dalT.Read(); ViewBag.Eventos = dalE.ReadAll(); ViewBag.Conferentes = dalC.ReadAll(); return(View(dalA.ReadAll())); } }
public ActionResult AtividadeCreate() { using (EventoDAL dal = new EventoDAL()) { ViewBag.Eventos = dal.ReadAll(); } using (ConferenteDAL dal = new ConferenteDAL()) { ViewBag.Conferentes = dal.ReadAll(); } using (TipoDAL dal = new TipoDAL()) { ViewBag.Tipos = dal.Read(); } return(View()); }
public ActionResult Evento_UsuarioCreate() { using (EventoDAL dal = new EventoDAL()) { ViewBag.Eventos = dal.ReadAll(); } using (UsuarioDAL dal = new UsuarioDAL()) { ViewBag.Usuarios = dal.ReadAll(); } using (StatusDAL dal = new StatusDAL()) { ViewBag.Status = dal.ReadAll(); } return(View()); }