-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathIExtensionService.cs
53 lines (50 loc) · 2.14 KB
/
IExtensionService.cs
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
using System.Collections.Generic;
using System.ServiceModel;
using MemberSuite.SDK.Types;
namespace MemberSuite.SDK.Interfaces
{
/// <summary>
/// Defines an extension service that can be called from
/// MemberSuite to retrieve a value or trigger an action.
/// </summary>
[ServiceContract]
public interface IExtensionService
{
/// <summary>
/// Checks to see if the service is operational.
/// </summary>
/// <returns>True if operational.</returns>
/// <remarks>
/// MemberSuite will call this method when attempting to make sure the service
/// works properly. At a base level, you should implement this method and return TRUE -
/// but you can use this method to signal to MemberSuite that, for whatever reason, this
/// service is out of commission.
/// </remarks>
[OperationContract]
bool Ping();
/// <summary>
/// Fires the trigger of an extension service
/// </summary>
/// <param name="typeOfTrigger">The type of trigger.</param>
/// <param name="objectType">Type of the object.</param>
/// <param name="context">The context.</param>
/// <param name="prevObj">The prev obj.</param>
[OperationContract(IsOneWay = true)]
void FireTrigger(
TriggerType typeOfTrigger,
string objectType,
string context,
MemberSuiteObject prevObj);
/// <summary>
/// Populates a dropdown list based on the current record values
/// </summary>
/// <param name="recordType">Type of the record.</param>
/// <param name="fieldName">The field name.</param>
/// <param name="msoCurrentObjectValues">The mso current object values.</param>
/// <returns></returns>
/// <remarks>This extension service allows for powerful cascading dropdown and conditional population logic</remarks>
[OperationContract]
List<NameValueStringPair> PopulateDropdownList(string recordType,
string fieldName, MemberSuiteObject msoCurrentObjectValues);
}
}