VVContactRepository::remove
The remove() member function of VVContactRepository takes a customer ID and removes the associated customer from the customer list.
VVContactRepository&
VVContactRepository::remove(unsigned long id) //1
{
RWDBDeleter aDeleter = table_.deleter(); //2
aDeleter.where(idColumn_ == id); //3
aDeleter.execute(); //4
return *this;
}