public async Task <ActionResult <CategoryModel> > Post(CategoryAddDto category) { var result = await _dao.AddCategoryAsync(category); if (result.Data != null) { return(Ok(result)); } else { return(BadRequest(result)); } }