コード例 #1
0
 public DeleteUserPhotoCommentBusiness(
     IUserPhotoCommentRepository commentRepository,
     IGetUserPhotoCommentsBusiness getUserPhotoCommentsBusiness,
     IGetUserPhotoBusiness getUserPhotoBusiness
     )
 {
     _commentRepository            = commentRepository;
     _getUserPhotoCommentsBusiness = getUserPhotoCommentsBusiness;
     _getUserPhotoBusiness         = getUserPhotoBusiness;
 }
コード例 #2
0
 public GetUserPhotoBusiness(
     IUserPhotoRepository userPhotoRepository,
     IGetUserPhotoCommentsBusiness getUserPhotoCommentsBusiness,
     IGetLikesPhotoBusiness getLikesPhotoBusiness
     )
 {
     _userPhotoRepository          = userPhotoRepository;
     _getUserPhotoCommentsBusiness = getUserPhotoCommentsBusiness;
     _getLikesPhotoBusiness        = getLikesPhotoBusiness;
 }