protected function execute(InputInterface $input, OutputInterface $output)
 {
     $db = new ReportDbConnector();
     $statement = "SELECT service_id FROM report_perf_object_definition";
     $query = $db->prepare($statement);
     $query->execute();
     while ($result = $query->fetch(PDO::FETCH_ASSOC)) {
         $Obj = new DataObject($result["service_id"]);
         $Obj->grabData();
     }
 }