public BankAccountCreateResponse CreateBankAccount(BankAccountCreateRequest bankAccountCreateRequest) { BankAccountCreateResponse bankAccountCreateResponse = new BankAccountCreateResponse(); BankAccount bankAccount = new BankAccount(); bankAccount.CustomerRef = bankAccountCreateRequest.CustomerName; _bankRepository.Add(bankAccount); return bankAccountCreateResponse; }
protected void btCreateAccount_Click(object sender, EventArgs e) { BankAccountCreateRequest createAccountRequest = new BankAccountCreateRequest(); createAccountRequest.CustomerName = this.txtCustomerRef.Text; ApplicationBankAccountService service = new ApplicationBankAccountService(); service.CreateBankAccount(createAccountRequest); ShowAllAccounts(); }