public ProductHistoryRecorder(
     IGuidGenerator guidGenerator,
     IJsonSerializer jsonSerializer,
     IProductHistoryRepository productHistoryRepository)
 {
     _guidGenerator            = guidGenerator;
     _jsonSerializer           = jsonSerializer;
     _productHistoryRepository = productHistoryRepository;
 }
Beispiel #2
0
 public ProductHistoryRecorder(
     IGuidGenerator guidGenerator,
     ICurrentTenant currentTenant,
     IJsonSerializer jsonSerializer,
     IProductHistoryRepository productHistoryRepository)
 {
     _guidGenerator            = guidGenerator;
     _currentTenant            = currentTenant;
     _jsonSerializer           = jsonSerializer;
     _productHistoryRepository = productHistoryRepository;
 }
Beispiel #3
0
 public ProductHistoryAppService(IProductHistoryRepository repository) : base(repository)
 {
     _repository = repository;
 }
 public ProductHistoryService(IProductHistoryRepository productHistoryRepository)
 {
     _productHistoryRepository = productHistoryRepository;
 }