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