コード例 #1
0
ファイル: StoreController.cs プロジェクト: daniefer/samples
 public StoreController(
     ApiSettings settings,
     ILogger <StoreController> logger,
     ITransactionCoordinator transactionCoordinator,
     IStoreService storeService,
     IApiStoreModelMapper storeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            storeService,
            storeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #2
0
 public ProductController(
     ApiSettings settings,
     ILogger <ProductController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductService productService,
     IApiProductModelMapper productModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            productService,
            productModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #3
0
 public LinkTypeController(
     ApiSettings settings,
     ILogger <LinkTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkTypeService linkTypeService,
     IApiLinkTypeModelMapper linkTypeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            linkTypeService,
            linkTypeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #4
0
 public VariableSetController(
     ApiSettings settings,
     ILogger <VariableSetController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVariableSetService variableSetService,
     IApiVariableSetModelMapper variableSetModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            variableSetService,
            variableSetModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #5
0
ファイル: DocumentController.cs プロジェクト: Vin2454/samples
 public DocumentController(
     ApiSettings settings,
     ILogger <DocumentController> logger,
     ITransactionCoordinator transactionCoordinator,
     IDocumentService documentService,
     IApiDocumentModelMapper documentModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            documentService,
            documentModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #6
0
 public BusinessEntityContactController(
     ApiSettings settings,
     ILogger <BusinessEntityContactController> logger,
     ITransactionCoordinator transactionCoordinator,
     IBusinessEntityContactService businessEntityContactService,
     IApiBusinessEntityContactModelMapper businessEntityContactModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            businessEntityContactService,
            businessEntityContactModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #7
0
ファイル: HandlerController.cs プロジェクト: daniefer/samples
 public HandlerController(
     ApiSettings settings,
     ILogger <HandlerController> logger,
     ITransactionCoordinator transactionCoordinator,
     IHandlerService handlerService,
     IApiHandlerModelMapper handlerModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            handlerService,
            handlerModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #8
0
 public TransactionStatusController(
     ApiSettings settings,
     ILogger <TransactionStatusController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITransactionStatusService transactionStatusService,
     IApiTransactionStatusModelMapper transactionStatusModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            transactionStatusService,
            transactionStatusModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #9
0
 public SpecialOfferController(
     ApiSettings settings,
     ILogger <SpecialOfferController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISpecialOfferService specialOfferService,
     IApiSpecialOfferModelMapper specialOfferModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            specialOfferService,
            specialOfferModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #10
0
 public NuGetPackageController(
     ApiSettings settings,
     ILogger <NuGetPackageController> logger,
     ITransactionCoordinator transactionCoordinator,
     INuGetPackageService nuGetPackageService,
     IApiNuGetPackageModelMapper nuGetPackageModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            nuGetPackageService,
            nuGetPackageModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #11
0
 public PersonPhoneController(
     ApiSettings settings,
     ILogger <PersonPhoneController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPersonPhoneService personPhoneService,
     IApiPersonPhoneModelMapper personPhoneModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            personPhoneService,
            personPhoneModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #12
0
 public OtherTransportController(
     ApiSettings settings,
     ILogger <OtherTransportController> logger,
     ITransactionCoordinator transactionCoordinator,
     IOtherTransportService otherTransportService,
     IApiOtherTransportModelMapper otherTransportModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            otherTransportService,
            otherTransportModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #13
0
 public MachineController(
     ApiSettings settings,
     ILogger <MachineController> logger,
     ITransactionCoordinator transactionCoordinator,
     IMachineService machineService,
     IApiMachineModelMapper machineModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            machineService,
            machineModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #14
0
 public BillOfMaterialController(
     ApiSettings settings,
     ILogger <BillOfMaterialController> logger,
     ITransactionCoordinator transactionCoordinator,
     IBillOfMaterialService billOfMaterialService,
     IApiBillOfMaterialModelMapper billOfMaterialModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            billOfMaterialService,
            billOfMaterialModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #15
0
 public PostHistoryTypesController(
     ApiSettings settings,
     ILogger <PostHistoryTypesController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPostHistoryTypesService postHistoryTypesService,
     IApiPostHistoryTypesModelMapper postHistoryTypesModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            postHistoryTypesService,
            postHistoryTypesModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #16
0
ファイル: FollowerController.cs プロジェクト: Vin2454/samples
 public FollowerController(
     ApiSettings settings,
     ILogger <FollowerController> logger,
     ITransactionCoordinator transactionCoordinator,
     IFollowerService followerService,
     IApiFollowerModelMapper followerModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            followerService,
            followerModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #17
0
 public SaleTicketsController(
     ApiSettings settings,
     ILogger <SaleTicketsController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISaleTicketsService saleTicketsService,
     IApiSaleTicketsModelMapper saleTicketsModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            saleTicketsService,
            saleTicketsModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #18
0
 public ReleaseController(
     ApiSettings settings,
     ILogger <ReleaseController> logger,
     ITransactionCoordinator transactionCoordinator,
     IReleaseService releaseService,
     IApiReleaseModelMapper releaseModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            releaseService,
            releaseModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #19
0
ファイル: ErrorLogController.cs プロジェクト: Vin2454/samples
 public ErrorLogController(
     ApiSettings settings,
     ILogger <ErrorLogController> logger,
     ITransactionCoordinator transactionCoordinator,
     IErrorLogService errorLogService,
     IApiErrorLogModelMapper errorLogModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            errorLogService,
            errorLogModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #20
0
 public CustomerController(
     ApiSettings settings,
     ILogger <CustomerController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICustomerService customerService,
     IApiCustomerModelMapper customerModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            customerService,
            customerModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #21
0
 public DashboardConfigurationController(
     ApiSettings settings,
     ILogger <DashboardConfigurationController> logger,
     ITransactionCoordinator transactionCoordinator,
     IDashboardConfigurationService dashboardConfigurationService,
     IApiDashboardConfigurationModelMapper dashboardConfigurationModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            dashboardConfigurationService,
            dashboardConfigurationModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #22
0
 public AWBuildVersionController(
     ApiSettings settings,
     ILogger <AWBuildVersionController> logger,
     ITransactionCoordinator transactionCoordinator,
     IAWBuildVersionService aWBuildVersionService,
     IApiAWBuildVersionModelMapper aWBuildVersionModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            aWBuildVersionService,
            aWBuildVersionModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #23
0
 public TeacherXTeacherSkillController(
     ApiSettings settings,
     ILogger <TeacherXTeacherSkillController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITeacherXTeacherSkillService teacherXTeacherSkillService,
     IApiTeacherXTeacherSkillModelMapper teacherXTeacherSkillModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            teacherXTeacherSkillService,
            teacherXTeacherSkillModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #24
0
 public CountryRegionController(
     ApiSettings settings,
     ILogger <CountryRegionController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICountryRegionService countryRegionService,
     IApiCountryRegionModelMapper countryRegionModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            countryRegionService,
            countryRegionModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #25
0
 public CertificateController(
     ApiSettings settings,
     ILogger <CertificateController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICertificateService certificateService,
     IApiCertificateModelMapper certificateModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            certificateService,
            certificateModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #26
0
ファイル: UsersController.cs プロジェクト: daniefer/samples
 public UsersController(
     ApiSettings settings,
     ILogger <UsersController> logger,
     ITransactionCoordinator transactionCoordinator,
     IUsersService usersService,
     IApiUsersModelMapper usersModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            usersService,
            usersModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #27
0
 public OrganizationController(
     ApiSettings settings,
     ILogger <OrganizationController> logger,
     ITransactionCoordinator transactionCoordinator,
     IOrganizationService organizationService,
     IApiOrganizationModelMapper organizationModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            organizationService,
            organizationModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #28
0
 public PipelineStepStatuController(
     ApiSettings settings,
     ILogger <PipelineStepStatuController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPipelineStepStatuService pipelineStepStatuService,
     IApiPipelineStepStatuModelMapper pipelineStepStatuModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            pipelineStepStatuService,
            pipelineStepStatuModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #29
0
 public AccountController(
     ApiSettings settings,
     ILogger <AccountController> logger,
     ITransactionCoordinator transactionCoordinator,
     IAccountService accountService,
     IApiAccountModelMapper accountModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            accountService,
            accountModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #30
0
 public ShoppingCartItemController(
     ApiSettings settings,
     ILogger <ShoppingCartItemController> logger,
     ITransactionCoordinator transactionCoordinator,
     IShoppingCartItemService shoppingCartItemService,
     IApiShoppingCartItemModelMapper shoppingCartItemModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            shoppingCartItemService,
            shoppingCartItemModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
コード例 #31
0
ファイル: Transaction.cs プロジェクト: NotMyself/App
 public Transaction(ITransactionCoordinator transactionCoordinator)
 {
     this.transactionCoordinator = transactionCoordinator;
 }