public async Task <IActionResult> Put(int id, UserSystemDto userSystemDto)
        {
            var _userSystemDto = _mapper.Map <UserSystem>(userSystemDto);

            userSystemDto.Id = id;
            var result = await _userSystemService.UpdateUserSystem(_userSystemDto);

            ApiResponse <UserSystemDto> response = new ApiResponse <UserSystemDto>(userSystemDto);

            if (result)
            {
                var responseApi = new ApiResponse <UserSystemDto>(userSystemDto)
                {
                    msg = "Se actualizo correctamente"
                };
                response = responseApi;
            }

            return(Ok(response));
        }