Ejemplo n.º 1
0
 public StoreEvent(string name, string type, Store location, Price price) : base(name, type, 0, price)
 {
     SetLocation(location);
 }
Ejemplo n.º 2
0
 public void SetLocation(Store store)
 {
     Location = store;
     store.AddStoreEvent(this);
 }