//CONSTRUCTOR
 public LearningProgramService(ILearningProgramRepository learningProgramRepository, IUnitOfWork unitOfWork,
                               IEducationProviderRepository educationProviderRepository)
 {
     _learningProgramRepository = learningProgramRepository;
     _unitOfWork = unitOfWork;
     _educationProviderRepository = educationProviderRepository;
 }
Exemple #2
0
 public LearningProgramBl(ILearningProgramRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }