public async Task <bool> DeleteMake(VehicleMake make) { try { await _vehicleRepository.DeleteMake(make); return(true); } catch { return(false); } }