40 lines
1.0 KiB
C#
40 lines
1.0 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 NinePMTimeJob : IJob
|
|
{
|
|
|
|
private readonly IStorageService _storageService;
|
|
private IMillionShopExtensionService _millionShopExtensionService;
|
|
|
|
public NinePMTimeJob(IStorageService storageService
|
|
, IMillionShopExtensionService millionShopExtensionService)
|
|
{
|
|
_storageService = storageService;
|
|
_millionShopExtensionService = millionShopExtensionService;
|
|
|
|
}
|
|
|
|
|
|
public void Execute(IJobExecutionContext context)
|
|
{
|
|
_storageService.SendManagerAudit();//店长业绩审核提醒
|
|
}
|
|
}
|
|
}
|
|
|