This file contains hidden or 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
public sealed class DatabaseCommandRetryDecorator<TCommand> : DatabaseRetryDecorator, ICommandHandler<TCommand> | |
where TCommand : ICommand | |
{ | |
private readonly ICommandHandler<TCommand> _handler; | |
public DatabaseCommandRetryDecorator(ICommandHandler<TCommand> handler, Config config) | |
: base(config) | |
{ | |
_handler = handler; | |
} |
This file contains hidden or 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
[MethodUnderTest]_[Scenario]_[ExpectedResult] |
This file contains hidden or 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
public abstract class PoolType : ValueObject | |
{ | |
public static readonly PoolType Quant = new QuantPoolType(); | |
public static readonly PoolType Verbal = new VerbalPoolType(); | |
public static readonly PoolType IR = new IRPoolType(); | |
public static readonly PoolType Awa = new AwaPoolType(); | |
public static readonly PoolType[] AllTypes = { Quant, Verbal, IR, Awa }; | |
public abstract int Id { get; } | |
public abstract int Size { get; } |
OlderNewer