Esempio n. 1
0
 public LessonResultCommandHandler(
     ILessonResultRepository lessonResultRepository,
     IUnitOfWork uow,
     IBus bus,
     IDomainNotificationHandler <DomainDotification> notifications, ILessonPresentationRepository lessonPresentationRepository) : base(uow, bus, notifications)
 {
     _lessonResultRepository = lessonResultRepository;
     _bus = bus;
     _lessonPresentationRepository = lessonPresentationRepository;
 }
Esempio n. 2
0
 public LessonResultAppService(
     IBus bus,
     IMapper mapper,
     ILessonResultRepository lessonResultRepository,
     ILessonPresentationRepository lessonPresentationRepository, IUser user)
 {
     _bus    = bus;
     _mapper = mapper;
     _lessonResultRepository       = lessonResultRepository;
     _lessonPresentationRepository = lessonPresentationRepository;
     _user = user;
 }
Esempio n. 3
0
 public LessonListAppService(ILessonResultRepository lessonResultRepository, ILessonPresentationRepository lessonPresentationRepository)
 {
     _lessonResultRepository       = lessonResultRepository;
     _lessonPresentationRepository = lessonPresentationRepository;
 }