тесты на работу модуля исполнения работают

This commit is contained in:
2025-01-12 14:17:19 +03:00
parent c9cd6ec0c0
commit 1a55131cb3
11 changed files with 158 additions and 47 deletions
+4 -4
View File
@@ -7,14 +7,14 @@ public interface ICallRequest
int ClientId { get; set; }
}
public class StaticCallRequest : ICallRequest
public class SingletonCallRequest : ICallRequest
{
public virtual int RequestTypeId => (int)RequestType.Static;
public virtual int RequestTypeId => (int)RequestType.Singleton;
public int CommandId { get; set; }
public int ClientId { get; set; }
}
public class CallRequest : StaticCallRequest
public class CallRequest : SingletonCallRequest
{
public override int RequestTypeId => (int)RequestType.NonParametrized;
public int ObjectId { get; set; }
@@ -28,7 +28,7 @@ public class ParametrizedCallRequest : CallRequest
enum RequestType
{
Static,
Singleton,
NonParametrized,
Parametrized
}