コード例 #1
0
        public async Task <IActionResult> AddWallet(string userId, [FromBody] ChainalysisProxy.Contracts.NewWalletModel wallet)
        {
            var result = await _service.AddWallet(userId, Mapper.Map <NewWalletModel>(wallet));

            return(Ok(result));
        }