Exemple #1
0
 public BasketsController(
     IInputBoundary <DeleteInput> deleteBasketnput,
     Presenter deletePresenter)
 {
     this.deleteBasketInput = deleteBasketnput;
     this.deletePresenter   = deletePresenter;
 }
Exemple #2
0
 public BasketsController(
     IInputBoundary <GetBasketDetailsInput> getBasketDetailsInput,
     Presenter getBasketDetailsPresenter)
 {
     this.getBasketDetailsInput     = getBasketDetailsInput;
     this.getBasketDetailsPresenter = getBasketDetailsPresenter;
 }
 public Orders(
     IInputBoundary <Input> orderHexagonalTemplateBoundary,
     OrderPresenter orderHexagonalTemplatePresenter)
 {
     this.orderHexagonalTemplateBoundary  = orderHexagonalTemplateBoundary;
     this.orderHexagonalTemplatePresenter = orderHexagonalTemplatePresenter;
 }
Exemple #4
0
 public OrdersController(
     IInputBoundary <CheckoutInput> checkoutInput,
     Presenter checkoutPresenter)
 {
     this.checkoutInput     = checkoutInput;
     this.checkoutPresenter = checkoutPresenter;
 }
 public AccountsController(
     IInputBoundary <CloseInput> closeAccountnput,
     Presenter closePresenter)
 {
     this.closeAccountInput = closeAccountnput;
     this.closePresenter    = closePresenter;
 }
 public AccountsController(
     IInputBoundary <WithdrawInput> withdrawInput,
     Presenter withdrawPresenter)
 {
     this.withdrawInput     = withdrawInput;
     this.withdrawPresenter = withdrawPresenter;
 }
 public Orders(
     IInputBoundary <Input> orderEventSourcingTemplateBoundary,
     OrderPresenter orderEventSourcingTemplatePresenter)
 {
     this.orderEventSourcingTemplateBoundary  = orderEventSourcingTemplateBoundary;
     this.orderEventSourcingTemplatePresenter = orderEventSourcingTemplatePresenter;
 }
Exemple #8
0
 public AccountsController(
     IInputBoundary <GetAccountDetailsInput> getAccountDetailsInput,
     Presenter getAccountDetailsPresenter)
 {
     this.getAccountDetailsInput     = getAccountDetailsInput;
     this.getAccountDetailsPresenter = getAccountDetailsPresenter;
 }
 public CustomersController(
     IInputBoundary <RegisterInput> registerInput,
     Presenter registerPresenter)
 {
     this.registerInput     = registerInput;
     this.registerPresenter = registerPresenter;
 }
 public CustomersController(
     IInputBoundary <GetCustomerDetailsInput> getCustomerInput,
     Presenter getCustomerDetailsPresenter)
 {
     this.getCustomerInput            = getCustomerInput;
     this.getCustomerDetailsPresenter = getCustomerDetailsPresenter;
 }
 public RunController(
     IInputBoundary <Input> boundary,
     OutputPresenter presenter)
 {
     this.boundary  = boundary;
     this.presenter = presenter;
 }
Exemple #12
0
 public BooksController(
     IInputBoundary <ListBooksInput> createBookInput,
     Presenter createBookPresenter)
 {
     this.listBooksInput     = createBookInput;
     this.listBooksPresenter = createBookPresenter;
 }
Exemple #13
0
 public AccountsController(
     IInputBoundary <DepositInput> depositnput,
     Presenter depositPresenter)
 {
     this.depositInput     = depositnput;
     this.depositPresenter = depositPresenter;
 }
Exemple #14
0
 public BasketsController(
     IInputBoundary <RemoveBookInput> removeBookInput,
     Presenter removeBookPresenter)
 {
     this.removeBookInput     = removeBookInput;
     this.removeBookPresenter = removeBookPresenter;
 }
Exemple #15
0
 public BasketsController(
     IInputBoundary <AddBookInput> addBookInput,
     Presenter addBookPresenter)
 {
     this.addBookInput     = addBookInput;
     this.addBookPresenter = addBookPresenter;
 }
 public CustomersController(
     IInputBoundary <RegisterInput> registerInput,
     IInputBoundary <GetCustomerDetailsInput> getCustomerInput,
     RegisterPresenter registerPresenter,
     CustomerDetailsPresenter getCustomerDetailsPresenter)
 {
     this.registerInput               = registerInput;
     this.getCustomerInput            = getCustomerInput;
     this.registerPresenter           = registerPresenter;
     this.getCustomerDetailsPresenter = getCustomerDetailsPresenter;
 }
        public AccountsController(
            IInputBoundary <CloseCommand> closeAccountnput,
            IInputBoundary <DepositCommand> depositnput,
            IInputBoundary <WithdrawCommand> withdrawInput,
            IInputBoundary <GetAccountDetailsCommand> getAccountDetailsInput,
            ClosePresenter closePresenter,
            DepositPresenter depositPresenter,
            WithdrawPresenter withdrawPresenter,
            AccountDetailsPresenter getAccountDetailsPresenter)
        {
            this.closeAccountInput      = closeAccountnput;
            this.depositInput           = depositnput;
            this.withdrawInput          = withdrawInput;
            this.getAccountDetailsInput = getAccountDetailsInput;

            this.closePresenter             = closePresenter;
            this.depositPresenter           = depositPresenter;
            this.withdrawPresenter          = withdrawPresenter;
            this.getAccountDetailsPresenter = getAccountDetailsPresenter;
        }
Exemple #18
0
 public PackageManagerController(IInputBoundary <AddPackageInput> addPackagesInput, IInputBoundary <UpdatePackageInput> updatePackagesInput)
 {
     _addPackagesInput    = addPackagesInput;
     _updatePackagesInput = updatePackagesInput;
 }