Beispiel #1
0
 public UpdateLectureCommandHandler(IUpdateLectureService service, ILecturesCommonService commonService,
                                    IUnitOfWork unitOfWork)
 {
     _service       = service;
     _commonService = commonService;
     _unitOfWork    = unitOfWork;
 }
Beispiel #2
0
 public UploadMediaCommandHandler(IUploadMediaService service, ILecturesCommonService commonService,
                                  IUnitOfWork unitOfWork)
 {
     _service       = service;
     _commonService = commonService;
     _unitOfWork    = unitOfWork;
 }
 public DeleteLectureCommandHandler(IDeleteLectureService service, ILecturesCommonService commonService,
                                    IUnitOfWork unitOfWork, IMediator mediator)
 {
     _service       = service;
     _commonService = commonService;
     _unitOfWork    = unitOfWork;
     _mediator      = mediator;
 }