예제 #1
0
        /// <summary>
        /// Method to get Points of a player.
        /// </summary>
        /// <param name="errorMessage"></param>
        /// <param name="playerId"></param>
        /// <returns></returns>
        public List <PointViewModel> PointsGet(out string errorMessage, int playerId)
        {
            PointService Pointservice = new PointService();

            return(Pointservice.PointsGet(out errorMessage, playerId));
        }