VVContactRepository::insert
The insert member function of VVContactRepository takes an instance of VVContact and inserts it into the table associated with this instance of VVContactRepository.
VVContactRepository&
VVContactRepository::insert(const VVContact& aContact) //1
{
RWDBInserter anInserter = table_.inserter(); //2
anInserter << aContact; //3
return *this;
}