Exemple #1
0
 public OrderService(
     IPublishingHouseUnitOfWork unitOfWork,
     IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }
Exemple #2
0
 public CategoryService(
     IPublishingHouseUnitOfWork unitOfWork,
     IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }
 public NotificationService(
     IPublishingHouseUnitOfWork unitOfWork,
     IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }
Exemple #4
0
 public BookService(
     IPublishingHouseUnitOfWork unitOfWork,
     IHostingEnvironment hostingEnvironment,
     IMapper mapper)
 {
     _unitOfWork         = unitOfWork;
     _hostingEnvironment = hostingEnvironment;
     _mapper             = mapper;
 }