Exemplo n.º 1
0
 public TicketPurchase(IDatabase database, IPerson person, ITicket ticket, ISellingPoint sellingPoint)
 {
     _database     = database.Get();
     _person       = person;
     _ticket       = ticket;
     _sellingPoint = sellingPoint;
 }
Exemplo n.º 2
0
 public SellingPointController(ISellingPoint sellingPoint)
 {
     _sellingPoint = sellingPoint;
 }