示例#1
0
        public static bool Insert(RevelationCheckpointEntity revelationCheckpointEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new RevelationCheckpointProvider(zoneId);

            return(provider.Insert(revelationCheckpointEntity, trans));
        }
示例#2
0
        public static bool Delete(System.Int32 idx, System.Byte[] rowVersion, DbTransaction trans = null, string zoneId = "")
        {
            RevelationCheckpointProvider provider = new RevelationCheckpointProvider(zoneId);

            return(provider.Delete(idx, rowVersion, trans));
        }
示例#3
0
        public static bool C_RevelationTheGame(System.Guid managerId, System.Int32 mark, System.Int32 littleLevels, System.Int32 goals, System.Int32 toConcede, System.Boolean isGeneral, System.Int32 courage, System.Boolean isVictory, DbTransaction trans = null, string zoneId = "")
        {
            RevelationCheckpointProvider provider = new RevelationCheckpointProvider(zoneId);

            return(provider.C_RevelationTheGame(managerId, mark, littleLevels, goals, toConcede, isGeneral, courage, isVictory, trans));
        }
示例#4
0
        public static Int32 C_RevelationIsOpenVeteran(string zoneId = "")
        {
            var provider = new RevelationCheckpointProvider(zoneId);

            return(provider.C_RevelationIsOpenVeteran());
        }
示例#5
0
        public static List <RevelationCheckpointEntity> C_RevelationCountGenerl(System.Guid managerid, string zoneId = "")
        {
            var provider = new RevelationCheckpointProvider(zoneId);

            return(provider.C_RevelationCountGenerl(managerid));
        }
示例#6
0
        public static List <RevelationCheckpointEntity> GetAll(string zoneId = "")
        {
            var provider = new RevelationCheckpointProvider(zoneId);

            return(provider.GetAll());
        }
示例#7
0
        public static RevelationCheckpointEntity C_RevelationGetCheckoint(System.Guid managerid, System.Int32 mark, string zoneId = "")
        {
            var provider = new RevelationCheckpointProvider(zoneId);

            return(provider.C_RevelationGetCheckoint(managerid, mark));
        }
示例#8
0
        public static RevelationCheckpointEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new RevelationCheckpointProvider(zoneId);

            return(provider.GetById(idx));
        }