예제 #1
0
 public PokerRoundsConverter(
     IConstructor <IConvertedPokerActionWithId> convertedActionWithId,
     IConstructor <IConvertedPokerRound> convertedRound,
     IPokerActionConverter actionConverter)
 {
     _convertedActionWithId = convertedActionWithId;
     _convertedRound        = convertedRound;
     _actionConverter       = actionConverter;
 }
 public MockPokerRoundsConverter(
     IConstructor <IConvertedPokerActionWithId> convertedActionWithId,
     IConstructor <IConvertedPokerRound> convertedRound,
     IPokerActionConverter actionConverter)
     : base(convertedActionWithId, convertedRound, actionConverter)
 {
     ActionCountProp             = 0;
     FoundActionProp             = false;
     PotProp                     = 0;
     SequenceForCurrentRoundProp = new ConvertedPokerRound();
     SequenceSoFarProp           = string.Empty;
     ToCallProp                  = 0;
 }