Skip to content

Instantly share code, notes, and snippets.

@delonnewman
Created October 9, 2008 17:48
Show Gist options
  • Save delonnewman/15830 to your computer and use it in GitHub Desktop.
Save delonnewman/15830 to your computer and use it in GitHub Desktop.
package Domestic::Provider;
use Moose;
use lib $ENV{'TASK_MANAGER_PATH'} .'/lib';
extends 'Domestic::Member';
has 'education' => ( is => 'rw', isa => 'Str' );
has 'work_status' => ( is => 'rw', isa => 'Str' );
has 'position' => ( is => 'rw', isa => 'Str' );
has 'schedule' => ( is => 'rw', isa => 'Str' );
has 'licence' => ( is => 'rw', isa => 'Str' );
has 'vehicle' => ( is => 'rw', isa => 'Str' );
has 'living' => ( is => 'rw', isa => 'Str' );
has 'birth_date' => ( is => 'rw', isa => 'Str' );
has 'city' => ( is => 'rw', isa => 'Str' );
has 'state' => ( is => 'rw', isa => 'Str' );
has 'zip_code' => ( is => 'rw', isa => 'Str' );
has 'first_name' => ( is => 'rw', isa => 'Str' );
has 'last_name' => ( is => 'rw', isa => 'Str' );
has 'phone' => ( is => 'rw', isa => 'Str' );
has 'fax' => ( is => 'rw', isa => 'Str' );
has 'history' => ( is => 'rw', isa => 'Str' );
has 'awards' => ( is => 'rw', isa => 'Str' );
has 'hobbies' => ( is => 'rw', isa => 'Str' );
has 'personality' => ( is => 'rw', isa => 'Str' );
has 'abilities' => ( is => 'rw', isa => 'Str' );
sub check_background {
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment