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