vote up 0 vote down star

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.

flag
What is it meant to do? Maybe some comments? – C. Ross Nov 4 at 21:45
1  
It's meaningless without some sort of context. – David Thornley Nov 4 at 21:53
1  
Does it work correctly according to its specification, including its performance specification? Is the code legible and maintainable? If all these things are true, then don't bother attempting to improve it; find something that is broken, wrong, slow, or hard to understand and improve that. If one of those things is not true, then make it true. – Eric Lippert Nov 4 at 22:40
It doesn't look like it needs much work to me - it contains reasonably standard MVP stuff - no major "smells" that I can see anyway. – Matt Breckon Nov 4 at 22:45
Are Account.ID and Account.Name required? IDs and Names are typically required, so overload the Create method on the factory to take the parameters. – Steve Nov 4 at 23:13
show 1 more comment

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.