Exemplo n.º 1
0
        public async Task <ActionResult> AddIngredientAsync(AddIngredientToItemModel model)
        {
            MenuItemRepository rep = new MenuItemRepository(sqlConnection);
            await rep.AddIngredientToMenuItem(model);


            return(null);
        }