the problem:

Each trade has a value that indicates the transaction amount in dollars and a text indicating if the client´s sector is "Public" or "Private". They implement the following interface:

interface ITrade
{
double Value { get; }
string ClientSector { get; }
}

Currently, there are three categories:
LOWRISK: Trades with value less...