コード例 #1
0
 public static ISlackbotWorkerBuilder AddFplBot(this ISlackbotWorkerBuilder builder, IConfiguration config)
 {
     builder.Services.Configure <FplbotOptions>(config);
     builder.Services.AddFplApiClient(config);
     builder.AddCommon();
     return(builder);
 }
コード例 #2
0
        public static ISlackbotWorkerBuilder AddFplBot(this ISlackbotWorkerBuilder builder, Action <FplbotOptions> configure)
        {
            builder.Services.Configure <FplbotOptions>(configure);

            var opts = new FplbotOptions();

            configure(opts);
            builder.Services.AddFplApiClient(o =>
            {
                o.Login    = opts.Login;
                o.Password = opts.Password;
            });
            builder.AddCommon();

            return(builder);
        }
コード例 #3
0
 private static void AddCommon(this ISlackbotWorkerBuilder builder)
 {
     builder.Services.AddSingleton <ICaptainsByGameWeek, CaptainsByGameWeek>();
     builder.Services.AddSingleton <ITransfersByGameWeek, TransfersByGameWeek>();
     builder.Services.AddSingleton <IGoalsDuringGameweek, GoalsDuringGameweek>();
     builder.Services.AddSingleton <IChipsPlayed, ChipsPlayed>();
     builder.Services.AddSingleton <ITeamValue, TeamValue>();
     builder.Services.AddSingleton <IGameweekHelper, GameweekHelper>();
     builder.Services.AddSingleton <DateTimeUtils>();
     builder.AddHandler <FplPlayerCommandHandler>()
     .AddHandler <FplStandingsCommandHandler>()
     .AddHandler <FplNextGameweekCommandHandler>()
     .AddHandler <FplInjuryCommandHandler>()
     .AddHandler <FplCaptainCommandHandler>()
     .AddHandler <FplTransfersCommandHandler>()
     .AddRecurring <NextGameweekRecurringAction>()
     .AddRecurring <NearDeadlineRecurringAction>()
     .AddRecurring <GoalMonitorRecurringAction>();
 }