Exemplo n.º 1
0
        public static bool Update(ActivityexPrizerecordEntity activityexPrizerecordEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ActivityexPrizerecordProvider(zoneId);

            return(provider.Update(activityexPrizerecordEntity, trans));
        }
Exemplo n.º 2
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            ActivityexPrizerecordProvider provider = new ActivityexPrizerecordProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Exemplo n.º 3
0
        public static ActivityexPrizerecordEntity GetPrize(System.String exKey, string zoneId = "")
        {
            var provider = new ActivityexPrizerecordProvider(zoneId);

            return(provider.GetPrize(exKey));
        }
Exemplo n.º 4
0
        public static List <ActivityexPrizerecordEntity> GetForPrize(string zoneId = "")
        {
            var provider = new ActivityexPrizerecordProvider(zoneId);

            return(provider.GetForPrize());
        }
Exemplo n.º 5
0
        public static ActivityexPrizerecordEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new ActivityexPrizerecordProvider(zoneId);

            return(provider.GetById(idx));
        }