public void CreateAccountBasicInfoTest(AccountBasicInfoRequest account)
        {
            string acctid = _accountsRepository.CreateAccountBasicInfo(account);

            Assert.True(!string.IsNullOrEmpty(acctid));
        }
示例#2
0
 public IActionResult CreateAccount([FromBody] AccountBasicInfoRequest account)
 {
     account.AccountID = _accountsRepository.CreateAccountBasicInfo(account);
     return(Ok(account));
 }