Ejemplo n.º 1
0
        public HttpResponse AddToCollection(int cardId)
        {
            if (!IsUserSignedIn())
            {
                return(this.Redirect("/Users/Login"));
            }
            var userId = this.GetUserId();

            cardsService.AddToCollection(cardId, userId);
            return(this.Redirect("/Cards/All"));
        }