добавление модуля гетвея

This commit is contained in:
2025-02-05 00:08:20 +03:00
parent 064a0395ea
commit f3ece97ebf
15 changed files with 80 additions and 18 deletions
+1
View File
@@ -12,4 +12,5 @@ public interface ITestController
TransmittedSharedObject<ITestController> SharedObjectTransmitionTest();
int Parametrized(TestParameter parameter);
TransmittedSharedObject<ITestParameter> GetTestParameter();
string Alphabet();
}
+5
View File
@@ -44,4 +44,9 @@ public class TestController : ITestController
{
return new TestParameterInstance();
}
public string Alphabet()
{
return "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
}
}
@@ -44,4 +44,9 @@ public class TransmissionTestController : ITestController
{
return new TestParameterInstance();
}
public string Alphabet()
{
return "ABCDEFGHIJKLMNOPQRSTUVWXYZ".Reverse().ToString();
}
}