public DeleteUserPhotoCommentBusiness( IUserPhotoCommentRepository commentRepository, IGetUserPhotoCommentsBusiness getUserPhotoCommentsBusiness, IGetUserPhotoBusiness getUserPhotoBusiness ) { _commentRepository = commentRepository; _getUserPhotoCommentsBusiness = getUserPhotoCommentsBusiness; _getUserPhotoBusiness = getUserPhotoBusiness; }
public GetUserPhotoBusiness( IUserPhotoRepository userPhotoRepository, IGetUserPhotoCommentsBusiness getUserPhotoCommentsBusiness, IGetLikesPhotoBusiness getLikesPhotoBusiness ) { _userPhotoRepository = userPhotoRepository; _getUserPhotoCommentsBusiness = getUserPhotoCommentsBusiness; _getLikesPhotoBusiness = getLikesPhotoBusiness; }