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