예제 #1
0
 public UserApplicationService(IUnitOfWork uow, IMapper mapper)
 {
     _uow              = uow;
     _applicationRepo  = uow.UserApplicationRepository;
     _regionRepo       = uow.RegionRepository;
     _proDirectionRepo = uow.ProfessionalDirectionRepository;
     _mapper           = mapper;
 }
예제 #2
0
 public ProfessionalDirectionService(IUnitOfWork uow, IMapper mapper)
 {
     _uow = uow;
     _proDirectionRepo = uow.ProfessionalDirectionRepository;
     _mapper           = mapper;
 }