Exemplo n.º 1
0
        public AppStateService(StageService stageService, IssueService issueService, AppHttpClient httpClient)
        {
            _stageService = stageService;
            _issueService = issueService;
            _httpClient   = httpClient;

            _stageService.OnStateChanged += StateChanged;
            _issueService.OnStateChanged += StateChanged;
        }
Exemplo n.º 2
0
 public StageService(AppHttpClient httpClient)
 {
     _httpClient = httpClient;
 }
Exemplo n.º 3
0
 public IssueService(AppHttpClient httpClient)
 {
     _httpClient = httpClient;
 }