init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
52
Kreta.Job.Tasks/MkbBankszamlaIgenylesJob.cs
Normal file
52
Kreta.Job.Tasks/MkbBankszamlaIgenylesJob.cs
Normal file
|
@ -0,0 +1,52 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Core.Configuratiaton;
|
||||
using Kreta.DataAccessManual.ParameterClasses;
|
||||
using Kreta.Job.Tasks.Core;
|
||||
|
||||
namespace Kreta.Job.Tasks
|
||||
{
|
||||
|
||||
public class MkbBankszamlaIgenylesJob : BankszamlaIgenylesJob, IMkbBankszamlaIgenylesJob
|
||||
{
|
||||
private readonly string MKB_IN = "\\MKB_IN\\";
|
||||
private readonly string MKB_ERROR = "\\MKB_ERROR\\";
|
||||
private readonly string MKB_OK = "\\MKB_OK\\";
|
||||
private readonly string MKB_ARCHIVE = "\\MKB_ARCHIVE\\";
|
||||
|
||||
public void MkbBankszamlaIgenyles()
|
||||
{
|
||||
RunBankszamlaIgenylesJob<MkbBankszamlaIgenylesConfiguration>();
|
||||
}
|
||||
|
||||
protected override string GetInPart()
|
||||
{
|
||||
return MKB_IN;
|
||||
}
|
||||
|
||||
protected override string GetErrorPart()
|
||||
{
|
||||
return MKB_ERROR;
|
||||
}
|
||||
|
||||
protected override string GetOkPart()
|
||||
{
|
||||
return MKB_OK;
|
||||
}
|
||||
|
||||
protected override string GetArchivePart()
|
||||
{
|
||||
return MKB_ARCHIVE;
|
||||
}
|
||||
|
||||
protected override string DecryptEgyediAzonosito(string receivedEgyediAzonosito)
|
||||
{
|
||||
return receivedEgyediAzonosito;
|
||||
}
|
||||
|
||||
protected override bool HasRowWithError(List<BankszamlaIgenylesPco> bankszamlaIgenylesPcos)
|
||||
{
|
||||
// NOTE: MKB esetén mindig kell küldeni email-t.
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue