Account
可以与Contact
相关联。
我们有一个POST
端点,可以创建一个帐户。
[Route("Account", Name = "CreateAccount", Order = 1)]
[HttpPost]
public Account CreateAccount([FromBody] Account account)
{
var newAccount = _accountService.CreateAccountEntity(account);
return newAccount;
}
允许消费者将现有 Contact
与新创建的Account
相关联,是否可以RESTful?