Reaction::InterfaceModel::Action::DBIC::Result::Delete - Reaction::InterfaceModel::Action::DBIC::Result::Delete documentation


Reaction documentation Contained in the Reaction distribution.

Index


Code Index:

NAME

Top

Reaction::InterfaceModel::Action::DBIC::Result::Delete

DESCRIPTION

Top

Delete is a subclass of Action::DBIC::Result that consumes Role::SimpleMethodCall|'Reaction::InterfaceModel::Action::Role::SimpleMethodCall to call the target_model's delete method

METHODS

Top

_target_model_method

Returns 'delete'

SEE ALSO

Top

Create, DeleteAll, Update,

AUTHORS

Top

See Reaction::Class for authors.

LICENSE

Top

See Reaction::Class for the license.


Reaction documentation Contained in the Reaction distribution.

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__;