예제 #1
0
 public async Task AddAccount(CreateMemberAccountCommand createMemberAccountCommand)
 {
     var account = (Account)createMemberAccountCommand;
     await _memberService.AddAccount(createMemberAccountCommand.MemberId, account);
 }