private void InitSubApis()
 {
     this.blockOperations         = new BlockTemplate(this.RestTemplate);
     this.directMessageOperations = new DirectMessageTemplate(this.RestTemplate);
     this.friendOperations        = new FriendTemplate(this.RestTemplate);
     this.geoOperations           = new GeoTemplate(this.RestTemplate);
     this.listOperations          = new ListTemplate(this.RestTemplate);
     this.searchOperations        = new SearchTemplate(this.RestTemplate);
     this.timelineOperations      = new TimelineTemplate(this.RestTemplate);
     this.userOperations          = new UserTemplate(this.RestTemplate);
 }
Esempio n. 2
0
 private void InitSubApis()
 {
     this.userOperations      = new UserTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.placesOperations    = new PlacesTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.friendOperations    = new FriendTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.feedOperations      = new FeedTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.groupOperations     = new GroupTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.commentOperations   = new CommentTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.likeOperations      = new LikeTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.eventOperations     = new EventTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.mediaOperations     = new MediaTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.pageOperations      = new PageTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.fqlOperations       = new FqlTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.questionOperations  = new QuestionTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
     this.openGraphOperations = new OpenGraphTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
 }
 private void InitSubApis()
 {
     this.blockOperations = new BlockTemplate(this.RestTemplate, this.IsAuthorized);
     this.directMessageOperations = new DirectMessageTemplate(this.RestTemplate, this.IsAuthorized);
     this.friendOperations = new FriendTemplate(this.RestTemplate, this.IsAuthorized);
     this.geoOperations = new GeoTemplate(this.RestTemplate, this.IsAuthorized);
     this.listOperations = new ListTemplate(this.RestTemplate, this.IsAuthorized);
     this.searchOperations = new SearchTemplate(this.RestTemplate, this.IsAuthorized);
     this.timelineOperations = new TimelineTemplate(this.RestTemplate, this.IsAuthorized);
     this.userOperations = new UserTemplate(this.RestTemplate, this.IsAuthorized);
 }
		private void InitSubApis()
		{
			this.userOperations      = new UserTemplate     (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.placesOperations    = new PlacesTemplate   (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.friendOperations    = new FriendTemplate   (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.feedOperations      = new FeedTemplate     (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.groupOperations     = new GroupTemplate    (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.commentOperations   = new CommentTemplate  (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.likeOperations      = new LikeTemplate     (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.eventOperations     = new EventTemplate    (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.mediaOperations     = new MediaTemplate    (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.pageOperations      = new PageTemplate     (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.fqlOperations       = new FqlTemplate      (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.questionOperations  = new QuestionTemplate (this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
			this.openGraphOperations = new OpenGraphTemplate(this.applicationNamespace, this.RestTemplate, this.IsAuthorized);
		}