// PUT: api/Automobile/5
        public async Task Put(Automobile theAutomobile)
        {
            var aCustomerId = this.GetCustomerId();

            await _autoService.UpdateAutomobileAsync(aCustomerId, theAutomobile);
        }