Ejemplo n.º 1
0
 public TurnHandler(IJailer jailer, IBanker banker, IMovementHandler movementHandler, IDice dice,
     ICardHandler cardHandler)
 {
     this.jailer = jailer;
     this.banker = banker;
     this.movementHandler = movementHandler;
     this.dice = dice;
     this.cardHandler = cardHandler;
 }
Ejemplo n.º 2
0
 public PipeCom(PipeReaderSettings settings)
 {
     this.settings = settings;
     handler       = new NullHandler();
 }
Ejemplo n.º 3
0
 public PipeCom(PipeReaderSettings settings)
 {
     this.settings = settings;
     handler = new NullHandler();
 }
Ejemplo n.º 4
0
 public void OnDeserialization(object sender)
 {
     handler = CreateHandler(this);
 }
Ejemplo n.º 5
0
 public virtual void NewCard()
 {
     CreateMasterFile();
     handler = CreateHandler(this);
 }
Ejemplo n.º 6
0
 public Card()
 {
     atr = new byte[] { 0x3b, 0x80, 0x80, 0x01, 0x01 };
     CreateMasterFile();
     handler = CreateHandler(this);
 }
Ejemplo n.º 7
0
 public SocketCom(TcpIpReaderSettings settings)
 {
     handler       = new NullHandler();
     this.settings = settings;
 }
Ejemplo n.º 8
0
 public CardController(ILogger <CardController> logger, ICardHandler cardHandler) : base(logger)
 {
     _cardHandler = cardHandler;
 }
Ejemplo n.º 9
0
 public CardReadServiceProxy(IServiceClientFactory factory, ICardHandler callbackHandler)
     : base(factory, new InstanceContext(callbackHandler))
 {
 }
Ejemplo n.º 10
0
 public SocketCom(TcpIpReaderSettings settings)
 {
     handler = new NullHandler();
     this.settings = settings;
 }
Ejemplo n.º 11
0
 public void Connect()
 {
     ClientCallback = OperationContext.Current.GetCallbackChannel <ICardHandler>();
 }