Пример #1
0
        /// <summary>
        /// Retriving the registration based on the star ID
        /// </summary>
        /// <param name="starsId">string starsid</param>
        /// <returns>Registration Model </returns>
        public RegistrationModel GetRegistrationByStarsEventId(string starsId, decimal eventid)
        {
            RegistrationRepository _registration = new RegistrationRepository();

            return(_registration.GetRegistrationByStarsEventId(starsId, eventid));
        }