コード例 #1
0
        public static bool ExtraExpandPackage(System.Guid managerId, System.Int32 addSize, ref System.Int32 resultSize, DbTransaction trans = null, string zoneId = "")
        {
            MallExtrarecordProvider provider = new MallExtrarecordProvider(zoneId);

            return(provider.ExtraExpandPackage(managerId, addSize, ref resultSize, trans));
        }
コード例 #2
0
        public static bool ExtraResetElite(System.Guid managerId, System.DateTime recordDate, DbTransaction trans = null, string zoneId = "")
        {
            MallExtrarecordProvider provider = new MallExtrarecordProvider(zoneId);

            return(provider.ExtraResetElite(managerId, recordDate, trans));
        }
コード例 #3
0
        public static bool ExtraAddStamina(System.Guid managerId, System.DateTime resumeTime, System.Int32 curStamina, DbTransaction trans = null, string zoneId = "")
        {
            MallExtrarecordProvider provider = new MallExtrarecordProvider(zoneId);

            return(provider.ExtraAddStamina(managerId, resumeTime, curStamina, trans));
        }
コード例 #4
0
        public static bool ExtraAddTrainseat(System.Guid managerId, ref System.Int32 curTrainSeat, DbTransaction trans = null, string zoneId = "")
        {
            MallExtrarecordProvider provider = new MallExtrarecordProvider(zoneId);

            return(provider.ExtraAddTrainseat(managerId, ref curTrainSeat, trans));
        }
コード例 #5
0
        public static MallExtrarecordEntity GetExtra(System.Guid managerId, System.Int32 extraType, string zoneId = "")
        {
            var provider = new MallExtrarecordProvider(zoneId);

            return(provider.GetExtra(managerId, extraType));
        }
コード例 #6
0
        public static List <MallExtrarecordEntity> GetAll(string zoneId = "")
        {
            var provider = new MallExtrarecordProvider(zoneId);

            return(provider.GetAll());
        }
コード例 #7
0
        public static MallExtrarecordEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new MallExtrarecordProvider(zoneId);

            return(provider.GetById(idx));
        }
コード例 #8
0
        public static bool Update(MallExtrarecordEntity mallExtrarecordEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new MallExtrarecordProvider(zoneId);

            return(provider.Update(mallExtrarecordEntity, trans));
        }
コード例 #9
0
        public static bool UpdateUsedCount(System.Int32 extraType, DbTransaction trans = null, string zoneId = "")
        {
            MallExtrarecordProvider provider = new MallExtrarecordProvider(zoneId);

            return(provider.UpdateUsedCount(extraType, trans));
        }
コード例 #10
0
        public static bool ExtraAddSubstitute(System.Guid managerId, ref System.Int32 curSubstitute, DbTransaction trans = null, string zoneId = "")
        {
            MallExtrarecordProvider provider = new MallExtrarecordProvider(zoneId);

            return(provider.ExtraAddSubstitute(managerId, ref curSubstitute, trans));
        }
コード例 #11
0
        public static bool ExtraSave(System.Int32 idx, System.Guid managerId, System.Int32 extraType, System.Int32 usedCount, System.DateTime recordDate, System.Byte[] rowVersion, ref System.Int32 returnCode, DbTransaction trans = null, string zoneId = "")
        {
            MallExtrarecordProvider provider = new MallExtrarecordProvider(zoneId);

            return(provider.ExtraSave(idx, managerId, extraType, usedCount, recordDate, rowVersion, ref returnCode, trans));
        }