function iniciarProjeto()
{
    $request = \Slim\Slim::getInstance()->request();
    $body = $request->getBody();
    $projeto = json_decode($body);
    $projetoDAO = new AgendaDAO();
    $projetoDAO->iniciarProjeto($projeto);
}