-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1496 from DFE-Digital/add-remaining-creation-chan…
…nel-endpoints Add creation channels to remaining endpoints
- Loading branch information
Showing
15 changed files
with
305 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
namespace GetIntoTeachingApi.Models.Crm | ||
{ | ||
/// <summary> | ||
/// Interface that defines the contract on which objects | ||
/// that wish to invoke contact channel creation behaviour must adhere. | ||
/// </summary> | ||
public interface ICreateContactChannel | ||
{ | ||
/// <summary> | ||
/// Provides the default read-only contact creation channel integer value. | ||
/// </summary> | ||
int? DefaultContactCreationChannel { get; } | ||
|
||
/// <summary> | ||
/// Provides the ability to assign and retrieve the channel source creation identifier. | ||
/// </summary> | ||
int? CreationChannelSourceId { get; set; } | ||
|
||
/// <summary> | ||
/// Provides the ability to assign and retrieve the channel service creation identifier. | ||
/// </summary> | ||
int? CreationChannelServiceId { get; set; } | ||
|
||
/// <summary> | ||
/// Provides the ability to assign and retrieve the channel activity creation identifier. | ||
/// </summary> | ||
int? CreationChannelActivityId { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.