コード例 #1
0
        public ActionResult AddAlchohol(int drinkID, string userName)
        {
            FavoritesServiceClient fClient = new FavoritesServiceClient();

            fClient.AddAlchohol(uClient.GetUserByUserName(userName).ID, drinkID);
            return(RedirectToAction("AlchoholDetails", new { drinkId = drinkID }));
        }