示例#1
0
        public IActionResult UpdateHotelMerchant(HotelMerchantUserCreateUpdateModel parameters)
        {
            var response = _hotelMerchantUserService.UpdateHotelMerchantUser(parameters);

            if (response)
            {
                return(Ok(response));
            }
            return(BadRequest());
        }