ApprovalRuleBaseStructures.cs
2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
using System;
using System.Collections.Generic;
using System.Linq;
using Sungero.Core;
using Sungero.CoreEntities;
namespace Sungero.Docflow.Structures.ApprovalRuleBase
{
partial class StageWithUnsupportedRole
{
public Sungero.Docflow.IApprovalRuleBaseStages Stage { get; set; }
public Sungero.Core.Enumeration Role { get; set; }
}
/// <summary>
/// Список всех возможных последовательностей блоков.
/// </summary>
partial class StagesVariants
{
public List<List<int>> AllSteps { get; set; }
public List<int> UnreachebleSteps { get; set; }
}
/// <summary>
/// Список этапов и недопустимых ролей в них.
/// </summary>
partial class StagesIncorrectRoles
{
public IApprovalRuleBaseStages Stage { get; set; }
public string Message { get; set; }
}
/// <summary>
/// Исполнители блока.
/// </summary>
partial class BlockPerformers
{
public List<Sungero.Company.IEmployee> Employees { get; set; }
public List<IRecipient> Recipient { get; set; }
public string Message { get; set; }
}
/// <summary>
/// Номер следующего этапа.
/// </summary>
partial class NextStageNumber
{
public int? Number { get; set; }
public string Message { get; set; }
}
/// <summary>
/// Этап маршрута.
/// </summary>
partial class RouteStep
{
public int StepNumber { get; set; }
public bool Branch { get; set; }
}
/// <summary>
/// Этап маршрута.
/// </summary>
partial class ConditionRouteStep
{
public Sungero.Docflow.Structures.ApprovalRuleBase.RouteStep RouteStep { get; set; }
public Sungero.Core.Enumeration? ConditionType { get; set; }
}
/// <summary>
/// Информация по этапу регламента.
/// </summary>
partial class StageStatusInfo
{
public bool IsLast { get; set; }
public bool InProcess { get; set; }
public bool IsNext { get; set; }
}
}