show/hide this revision's text 2 added 205 characters in body; added 141 characters in body

This is a single function from the presenter in an MVP triad.

public void NewAccount(string accountType)
{
    IAccount account = _accountFactory.Create(accountType);
    account.Id = _view.CurrentAccount;
    account.Name = _view.CurrentAccountName;
    _presenters.Add(_presenterFactory.Create(_presenterTypes[accountType]));
    _accountRepository.Add(account);
}

No implementations of IAccount are present in the main application, rather they are loaded at runtime using a plugin architecture.

The user clicks on a "New Account" dropdown and selects the account type. The program then creates an account of that type, updates the list of accounts in the UI then adds the account to a repository. Each account has an associated MVP triad. The presenter is assign in this function though the presenter's Show() method is called elsewhere.

I know this is highly subjective so I'm marking it as a community wiki.

show/hide this revision's text 1 [made Community Wiki]

How would you improve this function?

This is a single function from the presenter in an MVP triad.

public void NewAccount(string accountType)
{
    IAccount account = _accountFactory.Create(accountType);
    account.Id = _view.CurrentAccount;
    account.Name = _view.CurrentAccountName;
    _presenters.Add(_presenterFactory.Create(_presenterTypes[accountType]));
    _accountRepository.Add(account);
}

No implementations of IAccount are present in the main application, rather they are loaded at runtime using a plugin architecture.

I know this is highly subjective so I'm marking it as a community wiki.