Exemplo n.º 1
0
        public ActionResult AcceptProperty(int id)
        {
            BuyerProperty property = propertyBL.DisplayBuyerPropertyByID(id);

            propertyBL.AcceptRequest(property);
            return(View());
        }
Exemplo n.º 2
0
        public ActionResult PropertyStatus()
        {
            int           id       = (int)TempData["UserId"];
            BuyerProperty property = propertyBL.DisplayBuyerPropertyByID(id);

            TempData["Property"] = property;
            return(View());
        }