public ActionResult AcceptProperty(int id) { BuyerProperty property = propertyBL.DisplayBuyerPropertyByID(id); propertyBL.AcceptRequest(property); return(View()); }
public ActionResult PropertyStatus() { int id = (int)TempData["UserId"]; BuyerProperty property = propertyBL.DisplayBuyerPropertyByID(id); TempData["Property"] = property; return(View()); }