Ejemplo n.º 1
0
 //constructor
 public Event(string id, StateOfSHOP state, Customer customer, DateTime dateTime)
 {
     this.Id       = id;
     this.state    = state;
     this.customer = customer;
     this.dateTime = dateTime;
 }
Ejemplo n.º 2
0
 public BuyingEvent(string id, StateOfSHOP state, Customer customer, DateTime dateTime) : base(id, state, customer, dateTime)
 {
 }