operator * method

Money operator *(
  1. int quantity
)

Multiply money time quantity

Implementation

Money operator *(int quantity)
{
  return new Money(value * quantity);
}