Exemplo n.º 1
0
        public AsyncSpacexNotificationsSender(DiscordSocketClient client, ISpacexNotifications notifications, ISpacexInfo spacex)
        {
            _client        = client;
            _notifications = notifications;
            _spacex        = spacex;

            _thread = Task.Run(ThreadEntry);
        }
Exemplo n.º 2
0
 public AsyncSpacexNotificationsSender(DiscordSocketClient client, ISpacexNotifications notifications, ISpacexInfo spacex)
 {
     _client        = client;
     _notifications = notifications;
     _spacex        = spacex;
 }
Exemplo n.º 3
0
 public SpaceX(ISpacexInfo spacex, ISpacexNotifications notifications)
 {
     _spacex        = spacex;
     _notifications = notifications;
 }
Exemplo n.º 4
0
 public SpaceX(ISpacexInfo spacex, ISpacexNotifications notifications, Random rng)
 {
     _spacex        = spacex;
     _notifications = notifications;
     _rng           = rng;
 }