Beispiel #1
0
 public SessionImpl(IRestService restService, Uri baseUri, string token, string teamId,
                    IChatChannelFactory chatChannelFactory, IChatPostFactory chatPostFactory)
 {
     _restService        = restService;
     _baseUri            = baseUri;
     _token              = token;
     _teamId             = teamId;
     _chatChannelFactory = chatChannelFactory;
     _chatPostFactory    = chatPostFactory;
 }
 public HttpSession(IRestService restService, Uri baseUri, string token, string userId, IChatPostFactory factory,
                    IChatChannelFactory channelFactory)
 {
     _baseUri        = baseUri;
     _token          = token;
     _userId         = userId;
     _restService    = restService;
     _factory        = factory;
     _channelFactory = channelFactory;
 }
 public SessionImpl(
     IRestService restService,
     Uri uri,
     string token,
     string userId,
     string teamId,
     IChatChannelFactory channelFactory,
     IChatPostFactory postFactory)
 {
     _restService    = restService;
     _uri            = uri;
     _token          = token;
     _userId         = userId;
     _teamId         = teamId;
     _channelFactory = channelFactory;
     _postFactory    = postFactory;
 }