Пример #1
0
 public Mensagem(Anuncio anuncio, Usuario remetente, Pessoa destinatario)
 {
     this.Anuncio = anuncio;
     this.DataPostada = DateTime.Now;
     this.Remetente = remetente;
     this.Destinatario = destinatario;
 }
Пример #2
0
 public ActionResult PegarItem(Anuncio anuncio, String remetente, Pessoa destinatario)
 {
     if (remetente == null)
     {
         return RedirectToAction("Login", "Account");
     }
     if (destinatario.Name == User.Identity.Name)
     {
         return RedirectToAction("Index", new { error = 1 });
     }
     var user = new UsuariosController().Detalhes(remetente);
     var mensagem = new Mensagem(anuncio, user, destinatario);
     MensagensController mc = new MensagensController();
     mc.Create(mensagem);
     return RedirectToAction("Index", new { success = 1 });
 }