Skip to content

Account

vhs94 edited this page Apr 1, 2024 · 1 revision

Operações diponíveis em client.ForAcount()

Criar conta

CreatedAccountDto result = await client
    .ForAccount()
    .CreateAsync(new AccountWriteDto()); //preencher objeto

Consultar conta por ID

AccountReadDto result = await client
    .ForAccount()
    .GetByIdAsync("account-id");
Clone this wiki locally