| DBIx-Class-Service documentation | Contained in the DBIx-Class-Service distribution. |
DBIx::Class::ServiceProxy - Service proxy class for DBIx::Class::Service
version 0.02
This module is base class of internal classes by the concreate service classes. It is generated by automatically.
It will be returned class name inherited from DBIx::Class::Service.
It will be returned object inherited from DBIx::Class::Schema.
Toru Yamaguchi, <zigorou@cpan.org>
Please report any bugs or feature requests to
bug-dbix-class-serviceproxy@rt.cpan.org, or through the web interface at
http://rt.cpan.org. I will be notified, and then you'll automatically be
notified of progress on your bug as I make changes.
Copyright 2008 Toru Yamaguchi, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| DBIx-Class-Service documentation | Contained in the DBIx-Class-Service distribution. |
package DBIx::Class::ServiceProxy; use strict; use warnings; use base qw(DBIx::Class); __PACKAGE__->mk_classdata('service_class' => ''); __PACKAGE__->mk_classdata('schema');
our $VERSION = '0.02';
1; # End of DBIx::Class::ServiceProxy