public JsonResult Create(UserDetailModel model)
        {
            bool isSuccess = false;

            try
            {
                userDetailService.InsertSingleUserBase(model);
                isSuccess = true;
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
            }

            return(Json(isSuccess));
        }