Esempio n. 1
0
 public IActionResult GetAllKPILevel(int category, int page = ConstantCommon.PAGE, int pageSize = ConstantCommon.PAGE_SIZE)
 {
     return(Ok(_kpiLevelService.GetAllPaging(category, page, pageSize)));
 }
Esempio n. 2
0
 public async Task <IActionResult> GetAll(int level, int category, int page = ConstantCommon.PAGE, int pageSize = ConstantCommon.PAGE_SIZE)
 {
     return(Ok(await _KPILevelService.GetAllPaging(level, category, page, pageSize)));
 }