/**
  *
  */
 public function Reorder($iListId, $oXMLRequest)
 {
     $iMethod = NHTTPMethods::iPost;
     $sRESTURL = "/todo_lists/" . $iListId . "/todo_items/reorder.xml";
     $sBpResponse = parent::_Call($iMethod, $sRESTURL, $oXMLRequest);
     return $sBpResponse;
 }
 /**
  *
  */
 public function Show($iProjectId)
 {
     $iMethod = NHTTPMethods::iGet;
     $sRESTURL = "/projects/" . $iProjectId . ".xml";
     $sBpResponse = parent::_Call($iMethod, $sRESTURL);
     return $sBpResponse;
 }