TG.WXCRM.V4/CRMServices/CustomerCheck/CustomerCheckJob.cs

26 lines
576 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using WX.CRM.Common;
using Quartz;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WX.CRM.CRMServices.CustomerCheck
{
public class CustomerCheckJob : IJob
{
public void Execute(JobExecutionContext context)
{
try
{
new CustomerCheck().GetData();
}
catch (Exception e)
{
LogHelper.Error("BusinessDataJob.Execute" + e.ToString() + e.StackTrace);
}
}
}
}