Exemplo n.º 1
0
        public async Task <IActionResult> Update([FromBody] Models.Cars.CarProperty property)
        {
            var isSuccess = await CarPropertyLogic.Update(GetToken(), property);

            return(Ok(isSuccess));
        }