public BuildingNoManager(
     IShopsStore shopsStore,
     IBuildingNoStore ibuildingnosStore,
     IMapper mapper)
 {
     _ibuildingnosStore = ibuildingnosStore ?? throw new ArgumentNullException(nameof(ibuildingnosStore));
     _shopsStore        = shopsStore ?? throw new ArgumentNullException(nameof(shopsStore));
     _mapper            = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
 public ShopsFavoriteManager(
     IShopsFavoriteStore ishopsFavoritesStore,
     IShopsStore iShopsStore,
     IMapper mapper)
 {
     _ishopsFavoritesStore = ishopsFavoritesStore ?? throw new ArgumentNullException(nameof(ishopsFavoritesStore));
     _iShopsStore          = iShopsStore ?? throw new ArgumentNullException(nameof(iShopsStore));
     _mapper = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
예제 #3
0
 public BuildingTimingManager(
     IShopsStore shopsStore,
     IShopBaseInfoStore shopBaseInfoStore,
     IBuildingRecommendStore ibuildingRecommendStore,
     IMapper mapper)
 {
     _ishopsStore             = shopsStore ?? throw new ArgumentNullException(nameof(shopsStore));
     _ishopBaseInfoStore      = shopBaseInfoStore ?? throw new ArgumentNullException(nameof(shopBaseInfoStore));
     _ibuildingRecommendStore = ibuildingRecommendStore ?? throw new ArgumentNullException(nameof(ibuildingRecommendStore));
     _mapper = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
 public FileScopeManager(IShopsFileScopeStore shopsFileScopeStore,
                         IBuildingFileScopeStore buildingFileScopeStore,
                         IUpdateRecordFileScopeStore updateRecordFileScopeStore,
                         IBuildingNoticeFileScopeStore buildingNoticeFileScopeStore,
                         IBuildingsStore buildingsStore,
                         IShopsStore shopsStore,
                         IFileInfoStore fileInfoStore,
                         IMapper mapper)
 {
     _shopsFileScopeStore        = shopsFileScopeStore ?? throw new ArgumentNullException(nameof(shopsFileScopeStore));
     _buildingFileScopeStore     = buildingFileScopeStore ?? throw new ArgumentNullException(nameof(buildingFileScopeStore));
     _updateRecordFileScopeStore = updateRecordFileScopeStore ?? throw new ArgumentNullException(nameof(updateRecordFileScopeStore));
     _buildingsStore             = buildingsStore ?? throw new ArgumentNullException(nameof(buildingsStore));
     _shopsStore    = shopsStore ?? throw new ArgumentNullException(nameof(shopsStore));
     _fileInfoStore = fileInfoStore ?? throw new ArgumentNullException(nameof(fileInfoStore));
     _mapper        = mapper ?? throw new ArgumentNullException(nameof(mapper));
     _buildingNoticeFileScopeStore = buildingNoticeFileScopeStore ?? throw new ArgumentNullException(nameof(buildingNoticeFileScopeStore));
 }
예제 #5
0
 public ShopsManager(
     IShopsStore shopsStore,
     IShopFacilitiesStore shopFacilitiesStore,
     IShopsFavoriteStore shopsFavoriteStore,
     IShopBaseInfoStore shopBaseInfoStore,
     IShopLeaseInfoStore shopLeaseInfoStore,
     IFileInfoStore fileInfoStore,
     IShopsFileScopeStore shopFileScopeStore,
     IMapper mapper
     )
 {
     _shopsStore          = shopsStore ?? throw new ArgumentNullException(nameof(shopsStore));
     _shopFacilitiesStore = shopFacilitiesStore ?? throw new ArgumentNullException(nameof(shopFacilitiesStore));
     _ishopsFavoriteStore = shopsFavoriteStore ?? throw new ArgumentNullException(nameof(shopsFavoriteStore));
     _shopBaseInfoStore   = shopBaseInfoStore ?? throw new ArgumentNullException(nameof(shopBaseInfoStore));
     _shopLeaseInfoStore  = shopLeaseInfoStore ?? throw new ArgumentNullException(nameof(shopLeaseInfoStore));
     _fileInfoStore       = fileInfoStore;
     _shopFileScopeStore  = shopFileScopeStore;
     _mapper = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }