コード例 #1
0
ファイル: ClientController.cs プロジェクト: johnhinz/Investor
 public HttpResponseMessage CreateClient([FromBody] ClientPoco client)
 {
     _logic.Create(client);
     _log.Debug("Creating new client.");
     return(Request.CreateResponse(HttpStatusCode.OK));
 }