Ejemplo n.º 1
0
 public UserService(UnitOfWork unitOfWork, FriendService friendService, PostService postService,
                    LikeService likeService, AlbumService albumService, CommentService commentService,
                    InterestService interestService)
     : base(unitOfWork)
 {
     this.interestService = interestService;
     this.commentService  = commentService;
     this.albumService    = albumService;
     this.likeService     = likeService;
     this.postService     = postService;
     this.friendService   = friendService;
 }
Ejemplo n.º 2
0
 public AlbumService(UnitOfWork unitOfWork, FriendService friendService)
     : base(unitOfWork)
 {
     this.friendService = friendService;
 }