Ejemplo n.º 1
0
 public void Run(JobContext context)
 {
     GiveERPCustomerPointBiz biz = new GiveERPCustomerPointBiz(context);
     biz.GivePoint();
     ReturnCrmPointActionBiz retrunBiz = new ReturnCrmPointActionBiz();
     retrunBiz.ReturnPoint();
 }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     //送积分:
     GiveERPCustomerPointBiz biz = new GiveERPCustomerPointBiz();
     biz.GivePoint();
     //退积分:
     ReturnCrmPointActionBiz retrunBiz = new ReturnCrmPointActionBiz();
     retrunBiz.ReturnPoint();
 }