public BookingOrderCreationAuthorizationHandler(
     IPeriodSchemeAppService periodSchemeAppService,
     IProductAssetAppService productAssetAppService,
     IGrantedStoreAppService grantedStoreAppService,
     IProductAssetCategoryAppService productAssetCategoryAppService,
     IAssetOccupancyAppService assetOccupancyAppService,
     IBookingProductGroupDefinitionAppService definitionAppService)
 {
     _periodSchemeAppService         = periodSchemeAppService;
     _productAssetAppService         = productAssetAppService;
     _grantedStoreAppService         = grantedStoreAppService;
     _productAssetCategoryAppService = productAssetCategoryAppService;
     _assetOccupancyAppService       = assetOccupancyAppService;
     _definitionAppService           = definitionAppService;
 }
예제 #2
0
 public GrantedStoreAppServiceTests()
 {
     _grantedStoreAppService = GetRequiredService <IGrantedStoreAppService>();
 }
예제 #3
0
 public EditModalModel(IGrantedStoreAppService service)
 {
     _service = service;
 }
예제 #4
0
 public GrantedStoreController(IGrantedStoreAppService service)
 {
     _service = service;
 }
예제 #5
0
 public CreateModalModel(IGrantedStoreAppService service)
 {
     _service = service;
 }