Example #1
0
        public HttpResponse AddToCollection(int playerId)
        {
            var isCreated = playerService.AddPlayerToMyCollection(playerId, User.Id);

            if (!isCreated)
            {
                return(Error(new List <string> {
                    "Player already exists"
                }));
            }

            return(Redirect("/Players/All"));
        }