Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            JobContext context = new JobContext();

            context.Properties = new Dictionary <string, string>();
            context.Properties.Add("BizLog", BIZLOG);
            context.Properties.Add("RejectionPercent", "30");
            Console.WriteLine("\n\nVIP卡用户年购满10000元送500积分\n");
            Console.WriteLine("输入1开始赠送");
            string x = Console.ReadLine();

            while (x != "x")
            {
                switch (x)
                {
                case "1":
                    Console.WriteLine("结束: " + VIPCustomerPresentedPointsBP.PresentedPoints(context));
                    break;
                }
                x = Console.ReadLine();
            }
            Console.Read();
        }
Ejemplo n.º 2
0
 public void Run(JobContext jobContext)
 {
     VIPCustomerPresentedPointsBP.PresentedPoints(jobContext);
 }