/**
  * Get data for the Complete CSV to be generated.
  * @param $organizationId
  * @return Collection|static[]
  */
 public function completeCsvData($organizationId)
 {
     return $this->activity->with(['organization', 'results', 'transactions'])->where('organization_id', '=', $organizationId)->get();
 }