示例#1
0
 public RelayAppointmentScheduledService(IAppointmentDTORepository apptRepository, IMessagePublisher messagePublisher)
 {
     this._apptRepository   = apptRepository;
     this._messagePublisher = messagePublisher;
 }
示例#2
0
 public RelayAppointmentScheduledService(IAppointmentDTORepository repo, IMessagePublisher publisher)
 {
     this._repository = repo;
     this._publisher  = publisher;
 }