public Mensagem(Anuncio anuncio, Usuario remetente, Pessoa destinatario) { this.Anuncio = anuncio; this.DataPostada = DateTime.Now; this.Remetente = remetente; this.Destinatario = destinatario; }
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 }); }