public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            EuropeGamblerecordProvider provider = new EuropeGamblerecordProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
        public static bool Update(EuropeGamblerecordEntity europeGamblerecordEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new EuropeGamblerecordProvider(zoneId);

            return(provider.Update(europeGamblerecordEntity, trans));
        }
        public static List <EuropeGamblerecordEntity> GetNotPrize(System.Int32 matchId, string zoneId = "")
        {
            var provider = new EuropeGamblerecordProvider(zoneId);

            return(provider.GetNotPrize(matchId));
        }
        public static List <EuropeGamblerecordEntity> GambleRecord(System.Guid managerId, string zoneId = "")
        {
            var provider = new EuropeGamblerecordProvider(zoneId);

            return(provider.GambleRecord(managerId));
        }
        public static List <EuropeGamblerecordEntity> GetAll(string zoneId = "")
        {
            var provider = new EuropeGamblerecordProvider(zoneId);

            return(provider.GetAll());
        }
        public static EuropeGamblerecordEntity GambleRecord(System.Guid managerId, System.Int32 matchId, string zoneId = "")
        {
            var provider = new EuropeGamblerecordProvider(zoneId);

            return(provider.GambleRecord(managerId, matchId));
        }
        public static EuropeGamblerecordEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new EuropeGamblerecordProvider(zoneId);

            return(provider.GetById(idx));
        }