コード例 #1
0
 public IActionResult UpdateHistoryBalance([FromBody] OtherInvestmentBalaceHistoryModel otherInvestmentBalaceHistory)
 {
     this.otherInvestmentBalaceHistoryService.Update(otherInvestmentBalaceHistory);
     return(Ok());
 }
コード例 #2
0
 public IActionResult AddHistoryBalance(int otherInvestmentId, [FromBody] OtherInvestmentBalaceHistoryModel otherInvestmentBalaceHistory)
 {
     otherInvestmentBalaceHistory.Id = otherInvestmentId;
     this.otherInvestmentBalaceHistoryService.Add(otherInvestmentBalaceHistory);
     return(Ok());
 }