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

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

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