示例#1
0
    void CreateScreen()
    {
        NavigationItem.TitleView = new UIImageView(UIImage.FromBundle("logo"));

        var model = repository.GetAccountByCustomerId(0);

        IEnumerable <IGrouping <string, Account> > accountsByGroup;

        accountsByGroup = model.GroupBy(g => g.AccountType);

        Root = CreateNewRoot(accountsByGroup);
    }