package Reaction::InterfaceModel::Action::DBIC::Result::Delete; use Reaction::Class; use namespace::clean -except => [ qw(meta) ]; extends 'Reaction::InterfaceModel::Action::DBIC::Result'; with 'Reaction::InterfaceModel::Action::Role::SimpleMethodCall'; sub _target_model_method { 'delete' } __PACKAGE__->meta->make_immutable; 1; __END__; =head1 NAME Reaction::InterfaceModel::Action::DBIC::Result::Delete =head1 DESCRIPTION C is a subclass of L that consumes L to call the C's C method =head1 METHODS =head2 _target_model_method Returns 'delete' =head1 SEE ALSO L, L, L, =head1 AUTHORS See L for authors. =head1 LICENSE See L for the license. =cut