Adds newService to the pool and calls its start_service function.
newService
start_service
Returns true on success.
true
bool addService(Service newService) { newService.startService(); _services.add(newService); return true; }