Ejemplo n.º 1
0
        public static bool Job_CreateProcessTable(DbTransaction trans = null, string zoneId = "")
        {
            MatchprocessProvider provider = new MatchprocessProvider(zoneId);

            return(provider.Job_CreateProcessTable(trans));
        }
Ejemplo n.º 2
0
        public static bool Insert(MatchprocessEntity matchprocessEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new MatchprocessProvider(zoneId);

            return(provider.Insert(matchprocessEntity, trans));
        }
Ejemplo n.º 3
0
        public static bool Save(System.Int32 matchType, System.Byte[] process, System.DateTime rowTime, System.String dateChar, System.Guid matchId, DbTransaction trans = null, string zoneId = "")
        {
            MatchprocessProvider provider = new MatchprocessProvider(zoneId);

            return(provider.Save(matchType, process, rowTime, dateChar, matchId, trans));
        }
Ejemplo n.º 4
0
        public static bool Delete(System.Guid idx, DbTransaction trans = null, string zoneId = "")
        {
            MatchprocessProvider provider = new MatchprocessProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Ejemplo n.º 5
0
        public static List <MatchprocessEntity> GetAll(string zoneId = "")
        {
            var provider = new MatchprocessProvider(zoneId);

            return(provider.GetAll());
        }
Ejemplo n.º 6
0
        public static MatchprocessEntity GetByMatchId(System.String dateChar, System.Int32 matchType, System.Guid matchId, string zoneId = "")
        {
            var provider = new MatchprocessProvider(zoneId);

            return(provider.GetByMatchId(dateChar, matchType, matchId));
        }
Ejemplo n.º 7
0
        public static MatchprocessEntity GetById(System.Guid idx, string zoneId = "")
        {
            var provider = new MatchprocessProvider(zoneId);

            return(provider.GetById(idx));
        }