public async Task <IActionResult> CreateAsync([FromBody] Category category) { await _categoryBusiness.AddAsync(category); return(Ok()); }