Skip to content

Commit

Permalink
File rename
Browse files Browse the repository at this point in the history
Renamed CS files to make them dynamic - corresponding with name parameter
  • Loading branch information
stefan-d-p committed May 19, 2023
1 parent fba59da commit 8e1f04b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace ODCExternalLogic
{
[OSInterface(
Description = "Sample template action")]
public interface IActions
public interface IODCExternalLogic
{
/// <summary>
/// Sample ODC server action
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace ODCExternalLogic;

public class Actions : IActions
public class ODCExternalLogic : IODCExternalLogic
{
public string Echo(string message)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 8e1f04b

Please sign in to comment.