public IActionResult Get() { try { return(Ok(_brandCategoryService.GetAll())); } catch (Exception) { return(BadRequest("Brand not found")); } }
public IActionResult Get() { return(Ok(_brandCategoryService.GetAll())); }