public PartialViewResult Create(CreateBusinessViewModel model)
        {
            IBusinessResponse response;

            if (!ModelState.IsValid)
            {
                response = _facade.InvalidModelStateResponse;
                return(PartialView("_CreateResponsePartial", response));
            }

            var identity = User.Identity.Name;

            response = _facade.CreateBusinessResponse(model, identity);

            return(PartialView("_CreateResponsePartial", response));
        }