|  |  |  | 
|---|
|  |  |  | /// <returns></returns> | 
|---|
|  |  |  | // POST: api/AgingInOrOut/OCVInput | 
|---|
|  |  |  | [HttpPost("OCVInput")] | 
|---|
|  |  |  | public Task<dynamic> GetOCVInputAsync([FromBody] AgingInputDto input) | 
|---|
|  |  |  | public Task<WebResponseContent> GetOCVInputAsync([FromBody] AgingInputDto input) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return _agingInOrOutInputService.GetOCVInputAsync(input); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | /// <returns></returns> | 
|---|
|  |  |  | // POST: api/AgingInOrOut/OCVOutput | 
|---|
|  |  |  | [HttpPost("OCVOutput")] | 
|---|
|  |  |  | public Task<dynamic> GetOCVOutputAsync([FromBody] AgingOutputDto input) | 
|---|
|  |  |  | public Task<WebResponseContent> GetOCVOutputAsync([FromBody] AgingOutputDto input) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return _agingInOrOutInputService.GetOCVOutputAsync(input); | 
|---|
|  |  |  | } | 
|---|