You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
588 B
22 lines
588 B
using BackGround.Hangfire.Jobs.Waters; |
|
using Hangfire; |
|
using Infrastructure.Abstructions; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Text; |
|
|
|
namespace BackGround.Hangfire.JobRegisters.Water |
|
{ |
|
public class ImportWaterJobRegister:ITransientDependency |
|
{ |
|
private readonly IImportWaterJob _job; |
|
public ImportWaterJobRegister(IImportWaterJob job) |
|
{ |
|
_job = job; |
|
} |
|
public void Register(Guid fileId,int categoryId) |
|
{ |
|
BackgroundJob.Enqueue(() => _job.Execute(fileId,categoryId)); |
|
} |
|
} |
|
}
|
|
|