示例#1
0
 public Zoo(ZooOptions options, IMailer mailer)
 {
     _animals = new Dictionary <string, Animal>();
     _random  = new Random();
     // _options = options != null ? options : new ZooOptions();
     _options = options ?? new ZooOptions();
     _mailer  = mailer ?? new Mailer();
 }
示例#2
0
 public Zoo(ZooOptions options)
     : this(options, null)
 {
 }