Beispiel #1
0
 public UserController(IAuthProvider authProvider)
 {
     _postService    = new PostServiceClient();
     _friendService  = new FriendServiceClient();
     _userService    = new UserServiceClient();
     _authProvider   = authProvider;
     _commentService = new CommentServiceClient();
 }
 public UserController(IAuthProvider authProvider)
 {
     _postService = new PostServiceClient();
     _friendService = new FriendServiceClient();
     _userService = new UserServiceClient();
     _authProvider = authProvider;
     _commentService = new CommentServiceClient();
 }
 public FriendsController(IAuthProvider authProvider)
 {
     _friendService = new FriendServiceClient();
     _authProvider = authProvider;
 }
Beispiel #4
0
 public FriendsController(IAuthProvider authProvider)
 {
     _friendService = new FriendServiceClient();
     _authProvider  = authProvider;
 }