public IActionResult UpdateHistoryBalance([FromBody] OtherInvestmentBalaceHistoryModel otherInvestmentBalaceHistory)
 {
     this.otherInvestmentBalaceHistoryService.Update(otherInvestmentBalaceHistory);
     return(Ok());
 }
 public IActionResult AddHistoryBalance(int otherInvestmentId, [FromBody] OtherInvestmentBalaceHistoryModel otherInvestmentBalaceHistory)
 {
     otherInvestmentBalaceHistory.Id = otherInvestmentId;
     this.otherInvestmentBalaceHistoryService.Add(otherInvestmentBalaceHistory);
     return(Ok());
 }