3f4e81815aceebea315d0810babfc5da2904ca67
[catagits/Reaction.git] / lib / Reaction / InterfaceModel / Action / DBIC / Result / Delete.pm
1 package Reaction::InterfaceModel::Action::DBIC::Result::Delete;
2
3 use aliased 'Reaction::InterfaceModel::Action::DBIC::Result';
4 use aliased 'Reaction::InterfaceModel::Action::Role::SimpleMethodCall';
5 use Reaction::Types::DBIC 'Row';
6 use Reaction::Class;
7
8 use namespace::clean -except => [ qw(meta) ];
9 extends Result;
10
11 with SimpleMethodCall;
12 sub _target_model_method { 'delete' };
13
14 __PACKAGE__->meta->make_immutable;
15
16
17 1;
18
19 =head1 NAME
20
21 Reaction::InterfaceModel::Action::DBIC::Result::Delete
22
23 =head1 DESCRIPTION
24
25 =head2 target_model
26
27 =head1 AUTHORS
28
29 See L<Reaction::Class> for authors.
30
31 =head1 LICENSE
32
33 See L<Reaction::Class> for the license.
34
35 =cut