コード例 #1
0
 public PauseRoundHandler(IMessageHandler handler, IFightContext fightContext, ApplicationDbContext context) :
     base(
         handler, fightContext, context)
 {
 }
コード例 #2
0
 public LoadStateHandler(IMessageHandler handler, IFightContext fightContext, ApplicationDbContext context) : base(
         handler, fightContext, context)
 {
 }
コード例 #3
0
 public SendPointsHandler(IMessageHandler handler, IFightContext fightContext, ApplicationDbContext context) : base(handler, fightContext, context)
 {
 }
コード例 #4
0
 public JuryConnectedHandler(IMessageHandler handler, IFightContext fightContext, ApplicationDbContext context) : base(handler, fightContext, context)
 {
 }
コード例 #5
0
 protected BaseRequestHandler(IMessageHandler handler, IFightContext fightContext, ApplicationDbContext context)
 {
     NextHandler  = handler;
     FightContext = fightContext;
     Context      = context;
 }
コード例 #6
0
 public ShowPrematureEndPanelHandler(IMessageHandler handler, IFightContext fightContext, ApplicationDbContext context) : base(handler, fightContext, context)
 {
 }