Example #1
0
 public ProductAssetAppService(
     IProductAppService productAppService,
     IPeriodSchemeAppService periodSchemeAppService,
     IAssetAppService assetAppService,
     IProductAssetRepository repository,
     ProductAssetManager productAssetManager) : base(repository)
 {
     _productAppService      = productAppService;
     _periodSchemeAppService = periodSchemeAppService;
     _assetAppService        = assetAppService;
     _repository             = repository;
     _productAssetManager    = productAssetManager;
 }
Example #2
0
 public BookingDataSeedContributor(
     IGuidGenerator guidGenerator,
     ICurrentTenant currentTenant,
     IGrantedStoreRepository grantedStoreRepository,
     ProductAssetManager productAssetManager,
     IProductAssetRepository productAssetRepository,
     ProductAssetCategoryManager productAssetCategoryManager,
     IProductAssetCategoryRepository productAssetCategoryRepository)
 {
     _guidGenerator                  = guidGenerator;
     _currentTenant                  = currentTenant;
     _grantedStoreRepository         = grantedStoreRepository;
     _productAssetManager            = productAssetManager;
     _productAssetRepository         = productAssetRepository;
     _productAssetCategoryManager    = productAssetCategoryManager;
     _productAssetCategoryRepository = productAssetCategoryRepository;
 }