public async Task <IHttpActionResult> AddCategory([FromBody] CategoryInsertModel categoryInsertModel)
 {
     return(Ok(await _menuItemService.AddCategory(categoryInsertModel)));
 }