以宁静的方式创建相关实体

时间:2017-02-27 16:51:17

标签: c# asp.net .net visual-studio rest

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?

0 个答案:

没有答案