Ejemplo n.º 1
0
 public SenderNotify
 (
     LessonReminder lessonReminder,
     IPeopleParser peopleParser,
     DiningRoomIndicator indicator,
     IDataBaseParser dataBaseParser)
 {
     this.peopleParser   = peopleParser;
     this.indicator      = indicator;
     this.dataBaseParser = dataBaseParser;
     this.lessonReminder = lessonReminder;
 }
Ejemplo n.º 2
0
 public MessageHandler(
     DiningRoomIndicator diningRoom,
     IDataBaseParser dataBaseParser,
     IPeopleParser peopleParser,
     SenderNotify senderNotify,
     ILinkParser linkParser,
     GroupProvider groupProvider)
 {
     this.senderNotify   = senderNotify;
     this.diningRoom     = diningRoom;
     this.dataBaseParser = dataBaseParser;
     this.peopleParser   = peopleParser;
     this.linkParser     = linkParser;
     this.groupProvider  = groupProvider;
 }