Example #1
0
        public static bool Update(EuropeMatchEntity europeMatchEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new EuropeMatchProvider(zoneId);

            return(provider.Update(europeMatchEntity, trans));
        }
Example #2
0
        public static bool Delete(System.Int32 matchId, DbTransaction trans = null, string zoneId = "")
        {
            EuropeMatchProvider provider = new EuropeMatchProvider(zoneId);

            return(provider.Delete(matchId, trans));
        }
Example #3
0
        public static Int32 GetIsMatch(System.DateTime matchDate, string zoneId = "")
        {
            var provider = new EuropeMatchProvider(zoneId);

            return(provider.GetIsMatch(matchDate));
        }
Example #4
0
        public static List <EuropeMatchEntity> GetAllMatvch(System.DateTime startDate, string zoneId = "")
        {
            var provider = new EuropeMatchProvider(zoneId);

            return(provider.GetAllMatvch(startDate));
        }
Example #5
0
        public static List <EuropeMatchEntity> GetAll(string zoneId = "")
        {
            var provider = new EuropeMatchProvider(zoneId);

            return(provider.GetAll());
        }
Example #6
0
        public static EuropeMatchEntity GetById(System.Int32 matchId, string zoneId = "")
        {
            var provider = new EuropeMatchProvider(zoneId);

            return(provider.GetById(matchId));
        }