diff --git a/doc/index.html b/doc/index.html index ba5c8ac..03ea7cc 100644 --- a/doc/index.html +++ b/doc/index.html @@ -14,6 +14,9 @@
  • Peace::DAO::Application
  • +
  • + Peace::DAO::Build +
  • Peace::DAO::Customer
  • diff --git a/doc/lib/Peace/DAO/Build.pm.html b/doc/lib/Peace/DAO/Build.pm.html new file mode 100644 index 0000000..006634c --- /dev/null +++ b/doc/lib/Peace/DAO/Build.pm.html @@ -0,0 +1,89 @@ + + + + +Peace::DAO::Build - Database access object of Peace::Model::Build. + + + + + + + + + + +

    NAME

    + +

    Peace::DAO::Build - Database access object of Peace::Model::Build.

    + +

    SYNOPSIS

    + +
    my $build_dao = Peace::DAO::Build->new(
    +    dbh => $dbh,
    +);
    +
    +my $build = $build_dao->recover_by_uuid(
    +    uuid => $uuid,
    +);
    +
    +$build_dao->create( build => $build, );
    + +

    DESCRIPTION

    + +

    Peace::DAO::Build allows you to retrieve and create the representation of Peace::Model::Build in the database table builds.

    + +

    INSTANCE METHODS

    + +

    Peace::DAO::Build implements the following instance methods:

    + +

    new

    + +
    my $build_dao = Peace::DAO::Build->new(
    +    dbh => $dbh
    +);
    + +

    Instances a Peace::DAO::Build object.

    + +

    METHODS

    + +

    Peace::DAO::Build implements the following methods:

    + +

    recover_by_uuid

    + +
    my $build = $build_dao->recover_by_uuid( uuid => $uuid );
    + +

    Recovers a Peace::Model::Build from its uuid.

    + +

    create

    + +
    $build_dao->create( build => $build );
    + +

    Creates the database representation of a Peace::Model::Build.

    + +

    SEE ALSO

    + +

    Peace::Model::Build, DBI

    + + + + + + + diff --git a/doc/lib/Peace/Model/Build.pm.html b/doc/lib/Peace/Model/Build.pm.html index 6c8ee6e..7c12d88 100644 --- a/doc/lib/Peace/Model/Build.pm.html +++ b/doc/lib/Peace/Model/Build.pm.html @@ -119,7 +119,7 @@ $build->success($success);

    SEE ALSO

    -

    Peace::Model::Release, Peace::DAO::Build

    +

    Peace::Model::Release, Peace::DAO::Build