示例#1
0
 public BaseEntityServiceImpl(
     IBaseEntityUnitOfWork <TEntity> unitOfWork,
     IMapper mapper)
     : base(unitOfWork.EntityResourceRepository)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }
示例#2
0
 public UserServiceImpl(
     IBaseEntityUnitOfWork <User> unitOfWork,
     IMapper mapper)
     : base(unitOfWork, mapper)
 {
 }