Help for this page

Select Code to Download


  1. or download this
    package NEOpS::WDS;
      use base qw/DBIx::Class::Schema/;
    ...
      __PACKAGE__->load_classes();
    
    1;
    
  2. or download this
    package NEOpS::WDS::Systems;
    use base qw/DBIx::Class/;
    ...
    __PACKAGE__->has_one('username', 'NEOpS::WDS::Users', 'Point_of_Contac
    +t' );
    
    1;
    
  3. or download this
    package NEOpS::WDS::Users;
    use base qw/DBIx::Class/;
    ...
    __PACKAGE__->has_many(role, 'NEOpS::WDS::Roles', role);
    
    1;
    
  4. or download this
    package NEOpS::WDS::Roles;
    use base qw/DBIx::Class/;
    ...
    
    1;