Мы используем шаблон репозитория в нашем проекте MVC.Но я не могу реализовать сервис в кварцевых работах.Вот код:
[DisallowConcurrentExecution]
public class DeleteContentsJob : IJob
{
private readonly IAttachmentService attachmentService;
public DeleteContentsJob(IAttachmentService attachmentService)
{
this.attachmentService = attachmentService;
}
public void Execute(IJobExecutionContext context)
{
var contentFiles = attachmentService.GetMany(cz, content.Id);
Если я написал этот код, задание не сработает.Как я могу без проблем вызвать attachmentService.GetMany?