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

            propertyBL.AcceptRequest(property);
            return(View());
        }