Exemple #1
0
 public DefaultBirthdayService(IEmployeeCatalog employeeCatalog, IGreetingsNotification smtpGreetingsNotification)
 {
     this.employeeCatalog           = employeeCatalog;
     this.smtpGreetingsNotification = smtpGreetingsNotification;
 }
Exemple #2
0
 public BirthdayGreetingsService(IPostalOffice postalOffice, IEmployeeCatalog employeeCatalog)
 {
     _postalOffice    = postalOffice;
     _employeeCatalog = employeeCatalog;
 }