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

            return(await _autoService.GetAutomobilesForCustomerAsync(aCustomerId));
        }