42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
|
using Quartz;
|
|||
|
using System;
|
|||
|
using System.Data;
|
|||
|
using System.Data.Common;
|
|||
|
using MyCode.Project.Services;
|
|||
|
using MyCode.Project.Infrastructure;
|
|||
|
using MyCode.Project.Infrastructure.UnityExtensions;
|
|||
|
using Microsoft.Practices.Unity;
|
|||
|
using System.Reflection;
|
|||
|
using MyCode.Project.Domain.Model;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Specialized;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Threading;
|
|||
|
|
|||
|
namespace MyCode.Project.ScheduleTask.Jobs
|
|||
|
{
|
|||
|
public class TenAMTimeJob : IJob
|
|||
|
{
|
|||
|
private IMemberComplimentaryAccountService _memberComplimentaryAccountService;
|
|||
|
private IReport2207Service _report2207Service;
|
|||
|
|
|||
|
public TenAMTimeJob(IMemberComplimentaryAccountService memberComplimentaryAccountService, IReport2207Service report2207Service )
|
|||
|
{
|
|||
|
|
|||
|
_memberComplimentaryAccountService = memberComplimentaryAccountService;
|
|||
|
_report2207Service = report2207Service;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public void Execute(IJobExecutionContext context)
|
|||
|
{
|
|||
|
DateTime days = DateTime.Now;
|
|||
|
//_memberComplimentaryAccountService.RiShuJuTongBao(days);
|
|||
|
_report2207Service.LongHuBang();
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|