コード例 #1
0
        public List <AccountModel> GetAllAccounts()
        {
            List <AccountModel> accounts = new List <AccountModel>
            {
                new AccountModel
                {
                    Id   = 0,
                    Name = "Unallocated"
                }
            };

            accounts.AddRange(_accountData.GetAllAccounts());
            return(accounts);
        }