Пример #1
0
 public UpdateMatchHandler(
     AppDbContext ctx,
     MatchActionFactory managerFactory,
     INotificationQueue notifications)
 {
     _ctx            = ctx;
     _managerFactory = managerFactory;
     _notifications  = notifications;
 }
Пример #2
0
 public UpdateMatchHandler(
     AppDbContext ctx,
     MatchActionFactory managerFactory,
     INotificationQueue notifications,
     ITranslator translator)
 {
     _ctx            = ctx;
     _managerFactory = managerFactory;
     _notifications  = notifications;
     _translator     = translator;
 }