示例#1
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;
 }
示例#2
0
 public GrantedStoreRepositoryTests()
 {
     _grantedStoreRepository = GetRequiredService <IGrantedStoreRepository>();
 }
示例#3
0
 public GrantedStoreAppService(IGrantedStoreRepository repository) : base(repository)
 {
     _repository = repository;
 }