// POST: api/Automobile
 public async Task <int> Post(Automobile theAutomobile)
 {
     return(await _autoService.AddAutomobileAsync(theAutomobile));
 }