NAME

Ambrosia::BaseManager - a base class of Managers in your application.

VERSION

version 0.010

SYNOPSIS

package Employee::Managers::BaseManager;
use strict;

use Ambrosia::Meta;
class
{
    extends => [qw/Ambrosia::BaseManager/]
};

sub prepare
{
    my $self = shift;
    ...........
}

1;

DESCRIPTION

Ambrosia::BaseManager is base class of Managers in your application. You must override method prepare in your module.

CONSTRUCTOR

THREADS

Not tested.

BUGS

Please report bugs relevant to Ambrosia to <knm[at]cpan.org>.

SEE ALSO

Ambrosia::Dispatcher

COPYRIGHT AND LICENSE

Copyright (C) 2010-2012 Nickolay Kuritsyn. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Nikolay Kuritsyn (knm[at]cpan.org)