Example #1
0
        /// <summary>
        /// Method to check whether Point of a player is exist in the table.
        /// </summary>
        /// <param name="errorMessage"></param>
        /// <param name="playerId"></param>
        /// <param name="matchId"></param>
        /// <returns></returns>
        public bool IsPointExist(out string errorMessage, int playerId, int matchId)
        {
            PointService Pointservice = new PointService();

            return(Pointservice.IsPointExist(out errorMessage, playerId, matchId));
        }