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