public async Task <ActionResult> UpdateChef(CommonMealChefViewModel chef)
        {
            var chefModel = _commonMealChefMapper.Map(chef);
            await _commonMealChefService.UpdateChef(chefModel);

            return(Ok());
        }