示例#1
0
        public ActionResult AddBathroom(AddBathroomViewModel model, int Id)
        {
            List <BathroomViewModel> list = _listingService.AddBathroom(model, Id, User.Identity.GetUserId());

            return(PartialView("Property/_BathroomPartialTable", list));
        }