Add stock example on Observer pattern

This commit is contained in:
Petrutiu Mihai
2016-06-28 17:26:33 +03:00
parent 4a69b3da17
commit 5d639bf0ab
13 changed files with 262 additions and 34 deletions

View File

@@ -0,0 +1,10 @@
namespace ObserverPattern.StockUpdateEvents
{
public class Stock
{
public string Name { get; set; }
public int Quantity { get; set; }
public double Value { get; set; }
}
}