// GET: api/Automobile/5
        //[CacheOutput(ClientTimeSpan = 60, ServerTimeSpan = 300)]
        public async Task <Automobile> Get(int id)
        {
            var aCustomerId = this.GetCustomerId();

            return(await _autoService.GetAutomobileAsync(aCustomerId, id));
        }