public DM_DulieuDanhmucService(IUnitOfWork unitOfWork, IDM_DulieuDanhmucRepository dM_DulieuDanhmucRepository, IDM_NhomDanhmucRepository nhomDanhmucRepository, ILog loger) : base(unitOfWork, dM_DulieuDanhmucRepository)
 {
     _unitOfWork = unitOfWork;
     _dM_DulieuDanhmucRepository = dM_DulieuDanhmucRepository;
     _nhomDanhmucRepository      = nhomDanhmucRepository;
     _loger = loger;
     _loger.Info("Khởi tạo DM_DulieuDanhmuc service");
 }
Beispiel #2
0
 public DM_NhomDanhmucService(IUnitOfWork unitOfWork,
                              IDM_NhomDanhmucRepository dmNhomDanhmucRepository,
                              IDM_DulieuDanhmucRepository categoryDataRepository,
                              IMapper mapper,
                              ILog loger) : base(unitOfWork, dmNhomDanhmucRepository)
 {
     _unitOfWork = unitOfWork;
     _dM_NhomDanhmucRepository   = dmNhomDanhmucRepository;
     this.categoryDataRepository = categoryDataRepository;
     this.mapper = mapper;
     _loger      = loger;
     _loger.Info("Khởi tạo DM_NhomDanhmuc service");
 }
 public RecruitmentSkillDetailService(IUnitOfWork unitOfWork,
                                      IRecruitmentSkillDetailRepository recruitmentSkillDetailRepository,
                                      IDM_DulieuDanhmucRepository categoryDataRepository,
                                      IDM_NhomDanhmucRepository categoryRepository,
                                      ILog logger) :
     base(unitOfWork, recruitmentSkillDetailRepository)
 {
     this.recruitmentSkillDetailRepository = recruitmentSkillDetailRepository;
     this.categoryDataRepository           = categoryDataRepository;
     this.logger             = logger;
     this.categoryRepository = categoryRepository;
     this.logger.Info("Khởi tạo RecruitmentSkillDetailService");
 }