Esempio n. 1
0
        public EditUsersForm(IGitUserManager gitUserManager)
        {
            this.gitUserManager = gitUserManager;

            InitializeComponent();
            InitializeGitUserEditForm(new NullGitUser());
            RefreshUsersListBox();
        }
        public SelectManyUsersForm(IGitUserManager gitUserManager, IIconRepository iconRepository, NotifyIcon notifyIcon)
        {
            this.gitUserManager = gitUserManager;
            this.iconRepository = iconRepository;
            this.notifyIcon     = notifyIcon;

            InitializeComponent();
            InitializeUsersListBox();
        }
Esempio n. 3
0
        public CustomApplicationContext(IGitUserManager gitUserManager, IOptionsManager optionsManager, IIconRepository iconRepository, IProcessKiller processKiller)
        {
            this.gitUserManager = gitUserManager;
            this.optionsManager = optionsManager;
            this.iconRepository = iconRepository;
            this.processKiller  = processKiller;

            InitializeTrayIcon();
        }