// GET: MembroEvento public ActionResult Index(int id = -1, string msg = null) { ViewBag.Alert = msg; if (id > 0) { var _result = _alertaRepository.ObterPorId(id); if (_result != null) { _alertaRepository.Actualizar(_result); } } if (IsParticipante()) { //id = int.Parse(_httpContextAccessor.HttpContext.Session.GetString("_Participante")); return(View(_correcaoRepository.ObterPorParticipante(SessionId()))); } if (IsMembro()) { //id = int.Parse(_httpContextAccessor.HttpContext.Session.GetString("_Membro")); return(View(_correcaoRepository.ObterPorMembro(SessionId()))); } return(View(_correcaoRepository.ObterPorSubmissao(id))); }
// GET: Submissao public ActionResult Index(int id = -1, string msg = null) { ViewBag.Alert = msg; if (IsMembro()) { if (id > 0) { var _result = _alertaRepository.ObterPorId(id); if (_result != null) { _alertaRepository.Actualizar(_result); } } return(View(_submissaoRepository.ObterPorMembro(SessionId()))); } return(View()); }
// GET: MembroEvento public ActionResult Index(int id = -1, string msg = null, string type = null) { ViewBag.Alert = msg; ViewBag.Type = type; if (IsMembro()) { if (id > 0) { var _result = _alertaRepository.ObterPorId(id); if (_result != null) { _alertaRepository.Actualizar(_result); } } return(View(_eventoParticipanteRepository.ObterPorMembro(SessionId()))); } return(View()); }
public void Actualizar(Alerta entity) { _alertaRepository.Actualizar(entity); }