Example #1
0
        public async Task AddAccount([FromForm] Account account)
        {
            await context.AddAccountAndChildrenAsync(account);

            await context.SaveChangesAsync();
        }