feat(esppTemplateSync): переделал логику, подключил ISyncService
This commit is contained in:
28
PARR.EsppTemplateSync/Domain/EsppObjectTemplate.cs
Normal file
28
PARR.EsppTemplateSync/Domain/EsppObjectTemplate.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using PARR.Constants;
|
||||
using PARR.EsppSync;
|
||||
|
||||
namespace PARR.EsppTemplateSync.Domain
|
||||
{
|
||||
internal class EsppObjectTemplate : IEsppObject
|
||||
{
|
||||
public required string TemplateName { get; set; }
|
||||
|
||||
public RobotsEnum Robot => RobotsEnum.TemplateOrder;
|
||||
|
||||
public bool IsActive { get; set; }
|
||||
public required string WorkGroup { get; set; }
|
||||
public required string ShortDescription { get; set; }
|
||||
public required string ResponseArea { get; set; }
|
||||
public required string Duration { get; set; }
|
||||
public required string EK { get; set; }
|
||||
//public required string Initiator { get; set; }
|
||||
public required string FullDescription { get; set; }
|
||||
//public required string ClosingCode { get; set; }
|
||||
public required string Solution { get; set; }
|
||||
public required string Process { get; set; }
|
||||
public required string SubProcess { get; set; }
|
||||
public required string TNK { get; set; }
|
||||
public required string Work { get; set; }
|
||||
//public required string Worker { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user