Esempio n. 1
0
 public ServicesBootstrapper(
     WelcomeMessageService welcomeMessageService,
     UsernameService usernameService
     )
 {
     // initialize a service if needed...
 }
Esempio n. 2
0
 public MainLogic(AuthorService authorService, CategoryService categoryService, CommentService commentService, NewsService newsService, SubscriptionService subscriptionService, UsernameService usernameService)
 {
     this.authorService       = authorService;
     this.categoryService     = categoryService;
     this.commentService      = commentService;
     this.newsService         = newsService;
     this.subscriptionService = subscriptionService;
     this.usernameService     = usernameService;
 }