public ProductAssetCategoryAppService(
     IProductAppService productAppService,
     IPeriodSchemeAppService periodSchemeAppService,
     IAssetCategoryAppService assetCategoryAppService,
     IProductAssetCategoryRepository repository,
     ProductAssetCategoryManager productAssetCategoryManager) : base(repository)
 {
     _productAppService       = productAppService;
     _periodSchemeAppService  = periodSchemeAppService;
     _assetCategoryAppService = assetCategoryAppService;
     _repository = repository;
     _productAssetCategoryManager = productAssetCategoryManager;
 }
示例#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;
 }
示例#3
0
 public ProductAssetCategoryManager(IProductAssetCategoryRepository repository)
 {
     _repository = repository;
 }
 public ProductAssetCategoryRepositoryTests()
 {
     _productAssetCategoryRepository = GetRequiredService <IProductAssetCategoryRepository>();
 }