public ToastProgressBar(ISayService sayService, int durationInSeconds)
 {
     this.sayService   = sayService;
     DurationInSeconds = durationInSeconds;
     TaskbarProgress.SetState(TaskbarState.Normal);
 }
 public MobSwitchService(IGitService gitService, ISayService say, IOptions <AppSettings> appSettings)
 {
     this.GitService  = gitService;
     this.Say         = say;
     this.AppSettings = appSettings;
 }
 public TimerToastService(IConsole console, ISayService sayService)
 {
     this.console    = console;
     this.sayService = sayService;
 }
Exemple #4
0
 public GitService(IShellCmdService cmdService, ISayService say)
 {
     this.cmdService = cmdService;
     this.say        = say;
 }