diff --git a/odc-externallogic-template/ODCExternalLogic.Library/IActions.cs b/odc-externallogic-template/ODCExternalLogic.Library/IODCExternalLogic.cs similarity index 94% rename from odc-externallogic-template/ODCExternalLogic.Library/IActions.cs rename to odc-externallogic-template/ODCExternalLogic.Library/IODCExternalLogic.cs index 0743658..9c391e2 100644 --- a/odc-externallogic-template/ODCExternalLogic.Library/IActions.cs +++ b/odc-externallogic-template/ODCExternalLogic.Library/IODCExternalLogic.cs @@ -4,7 +4,7 @@ namespace ODCExternalLogic { [OSInterface( Description = "Sample template action")] - public interface IActions + public interface IODCExternalLogic { /// /// Sample ODC server action diff --git a/odc-externallogic-template/ODCExternalLogic.Library/Actions.cs b/odc-externallogic-template/ODCExternalLogic.Library/ODCExternalLogic.cs similarity index 75% rename from odc-externallogic-template/ODCExternalLogic.Library/Actions.cs rename to odc-externallogic-template/ODCExternalLogic.Library/ODCExternalLogic.cs index df4cdc8..802b6ef 100644 --- a/odc-externallogic-template/ODCExternalLogic.Library/Actions.cs +++ b/odc-externallogic-template/ODCExternalLogic.Library/ODCExternalLogic.cs @@ -2,7 +2,7 @@ namespace ODCExternalLogic; -public class Actions : IActions +public class ODCExternalLogic : IODCExternalLogic { public string Echo(string message) { diff --git a/odc-externallogic-template/ODCExternalLogic.Test/UnitTests.cs b/odc-externallogic-template/ODCExternalLogic.Test/UnitTests.cs index 85169b4..94c80d2 100644 --- a/odc-externallogic-template/ODCExternalLogic.Test/UnitTests.cs +++ b/odc-externallogic-template/ODCExternalLogic.Test/UnitTests.cs @@ -3,7 +3,7 @@ namespace ODCExternalLogic.Test; public class Tests { - private static readonly IActions _actions = new Actions(); + private static readonly IODCExternalLogic _actions = new ODCExternalLogic(); [SetUp] public void Setup()