-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCustomCaseActions.Local.cs
More file actions
19 lines (16 loc) · 1.03 KB
/
Copy pathCustomCaseActions.Local.cs
File metadata and controls
19 lines (16 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
// ReSharper disable once CheckNamespace
namespace PayrollEngine.Client.Scripting.Function;
public partial class CaseChangeFunction
{
// Issue (from PayrollEngine.Client.Scripting.Function.CaseValidateFunction.cs)
public bool HasIssues() => throw new NotSupportedException();
public void AddCaseIssue(string message) => throw new NotSupportedException();
public void AddCaseFieldIssue(string caseFieldName, string message) => throw new NotSupportedException();
public void AddCaseAttributeIssue(string attributeName, params object[] parameters) => throw new NotSupportedException();
public void AddFieldAttributeIssue(string caseFieldName, string attributeName, params object[] parameters) =>
throw new NotSupportedException();
public DateTime? GetStart(string caseFieldName) => throw new NotSupportedException();
public DateTime? GetEnd(string caseFieldName) => throw new NotSupportedException();
public void SetValue(string caseFieldName, object value) => throw new NotSupportedException();
}