Beispiel #1
0
 public ImportController(IBlogMLService blogMLService, IBlogSiteService blogSiteService,
                         IProfileUserService profileUserService)
 {
     _blogMLService = blogMLService;
     _blogSiteService = blogSiteService;
     _profileUserService = profileUserService;
 }
Beispiel #2
0
 public HomeController(IPostService postService, IProfileUserService profileUserService)
 {
     _postService = postService;
     _profileUserService = profileUserService;
 }
Beispiel #3
0
 public ProfileController(IAuthenticationService authenticationService, IProfileUserService userService)
 {
     _authenticationService = authenticationService;
     _userService = userService;
 }