Esempio n. 1
0
 public async Task <IActionResult> GetAll([FromRoute] Int32 catgId, [FromQuery] int status)
 {
     return(Ok(await _SubCategoryService.GetSubCategoriesAsync(catgId, status)));
 }
Esempio n. 2
0
 public async Task <ICollection <SubCategoryDto> > Get() =>
 await _subCategoryService.GetSubCategoriesAsync();