Пример #1
0
 public IActionResult UpdateKPILevel([FromBody] KPILevelForUpdate entity)
 {
     return(Ok(_kpiLevelService.Update(entity)));
 }
Пример #2
0
 public async Task <IActionResult> UpdateKPILevel([FromBody] KPILevelForUpdate entity)
 {
     return(Ok(await _KPILevelService.Update(entity)));
 }