Exemplo n.º 1
0
        public static bool Delete(System.String idx, DbTransaction trans = null, string zoneId = "")
        {
            PayChargehistoryProvider provider = new PayChargehistoryProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Exemplo n.º 2
0
        public static bool GetPointForActivityNoTime(System.String account, ref System.Int32 point, DbTransaction trans = null, string zoneId = "")
        {
            PayChargehistoryProvider provider = new PayChargehistoryProvider(zoneId);

            return(provider.GetPointForActivityNoTime(account, ref point, trans));
        }
Exemplo n.º 3
0
        public static List <PayChargehistoryEntity> GetForActivity(System.String account, System.DateTime startTime, System.DateTime endTime, string zoneId = "")
        {
            var provider = new PayChargehistoryProvider(zoneId);

            return(provider.GetForActivity(account, startTime, endTime));
        }
Exemplo n.º 4
0
        public static Int32 SelectOrderNum(System.Guid orderId, System.DateTime sTime, System.DateTime eTime, string zoneId = "")
        {
            var provider = new PayChargehistoryProvider(zoneId);

            return(provider.SelectOrderNum(orderId, sTime, eTime));
        }
Exemplo n.º 5
0
        public static List <PayChargehistoryEntity> GetByAccount(System.String account, string zoneId = "")
        {
            var provider = new PayChargehistoryProvider(zoneId);

            return(provider.GetByAccount(account));
        }
Exemplo n.º 6
0
        public static List <PayChargehistoryEntity> GetAll(string zoneId = "")
        {
            var provider = new PayChargehistoryProvider(zoneId);

            return(provider.GetAll());
        }
Exemplo n.º 7
0
        public static PayChargehistoryEntity GetById(System.String idx, string zoneId = "")
        {
            var provider = new PayChargehistoryProvider(zoneId);

            return(provider.GetById(idx));
        }
Exemplo n.º 8
0
        public static bool Update(PayChargehistoryEntity payChargehistoryEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new PayChargehistoryProvider(zoneId);

            return(provider.Update(payChargehistoryEntity, trans));
        }
Exemplo n.º 9
0
        public static bool ChargeCSDK(System.String account, System.Int32 sourceType, System.String billingId, System.Int32 gamePoint, System.Int32 chargePoint, System.Decimal cash, System.Int32 bonus, ref System.Int32 result, System.Int32 eqid, DbTransaction trans = null, string zoneId = "")
        {
            PayChargehistoryProvider provider = new PayChargehistoryProvider(zoneId);

            return(provider.ChargeCSDK(account, sourceType, billingId, gamePoint, chargePoint, cash, bonus, ref result, eqid, trans));
        }