Add Mediator pattern description

This commit is contained in:
Petrutiu Mihai
2016-07-12 18:20:19 +03:00
parent 508a23c6f7
commit b3c6a985e2
3 changed files with 82 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ using System.Threading.Tasks;
namespace MediatorPattern.StockExchange
{
/// <summary>
/// Mediator implementation
/// </summary>
public class StockExchange : IStockExchange
{
Dictionary<string, List<Trader>> sellers;