public function Insert()
 {
     if (!parent::Insert()) {
         return false;
     }
     $conn = parent::GetConnection();
     $query = $this->SetupQuery(Query::INSERT_WALKING_TASK);
     if (!odbc_exec($conn, $query)) {
         return false;
     }
     return true;
 }