public HrustUpdater(
     ISuccessService successService,
     IQuickStatService quickStatService,
     IOpenStatService openStatService,
     ITopService topService)
 {
     this.successService   = successService;
     this.quickStatService = quickStatService;
     this.openStatService  = openStatService;
     this.topService       = topService;
 }
Esempio n. 2
0
 public TeamCandidatService(
     IFriendsService friendsService,
     ITopService topService,
     IQuickStatService quickStatService,
     IPeriodStatService periodStatService,
     IForumService forumService)
 {
     this.friendsService    = friendsService;
     this.topService        = topService;
     this.quickStatService  = quickStatService;
     this.periodStatService = periodStatService;
     this.forumService      = forumService;
 }
Esempio n. 3
0
 public TopRepo(IUnityContainer uc, ITopService service)
 {
     _uc      = uc;
     _service = service;
 }