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