public Client(string name, ITicketSystemMediator ticketSystem) { this.Name = name; this.TicketSystem = ticketSystem; }
public SupportTeam(string team, ITicketSystemMediator ticketSystem) { this.Team = team; this.TicketSystem = ticketSystem; }