#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package Corp::Contact::Form;

use strict;
use warnings;

use lib '/app/tools/common/lib';
use Common::Assert;

use lib '/app/tools/corp/lib';
use Corp::Contact::Contact;

use Common::FormObject;
use base 'Common::FormObject';

sub _init
{
    my ($self, %args) = @_;

    $self->SUPER::_init(%args);

    $self->{Contact} = Corp::Contact::Contact->new();


    return $self;
}


sub save
{
    my ($self) = @_;

    $self->{Contact}->save();
}


sub validate
{
    my ($self) = @_;

    return $self->{Contact}->validate();
}



###
1;#
###
