summaryrefslogtreecommitdiff
path: root/LedgerSMB/DBObject/Employee.pm
blob: ddc453a6afae75ef17a16fefd690f6ce1082f774 (plain)
  1. package LedgerSMB::DBObject::Employee;
  2. use base qw(LedgerSMB::DBObject::Company);
  3. use strict;
  4. my $ENTITY_CLASS = 3;
  5. sub set_entity_class {
  6. my $self = shift @_;
  7. $self->{entity_class} = $ENTITY_CLASS;
  8. }
  9. 1;