예제 #1
0
 public LearningPathServices(ILearningPathRepository learningPathRepository)
 {
     _learningPathRepository = learningPathRepository;
 }
예제 #2
0
 public LearningPathController(ILearningPathRepository repository)
 {
     _repository = repository;
 }
예제 #3
0
 public CreateLearningPathCommandHandler(ILearningPathRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
 public GetLearningPathQueryHandler(ILearningPathRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }