示例#1
0
 public ResponseResult <long> CreateCardAccount(Guid userId, Guid paymentSystemId, string currencyCode)
 {
     return(_cardAccountService.CreateCardAccount(userId, paymentSystemId, currencyCode));
 }
 public IHttpActionResult Create(CreateCardAccountCommand command)
 {
     return(Ok(_cardAccountService.CreateCardAccount(command)));
 }