Exemple #1
0
 public PalestraController(IPalestraAppService palestraAppService,
                           IPalestranteAppService palestranteAppService,
                           INotificationHandler <DomainNotification> notifications) : base(notifications)
 {
     _palestraAppService    = palestraAppService;
     _palestranteAppService = palestranteAppService;
 }
 public PalestranteController(
     IPalestranteAppService palestranteAppService,
     IPalestraAppService palestraAppService,
     INotificationHandler <DomainNotification> notifications,
     IMediatorHandler mediator) : base(notifications, mediator)
 {
     _palestranteAppService = palestranteAppService;
     _palestraAppService    = palestraAppService;
 }