public DeleteUserPhotoCommentBusiness(
     IUserPhotoCommentRepository commentRepository,
     IGetUserPhotoCommentsBusiness getUserPhotoCommentsBusiness,
     IGetUserPhotoBusiness getUserPhotoBusiness
     )
 {
     _commentRepository            = commentRepository;
     _getUserPhotoCommentsBusiness = getUserPhotoCommentsBusiness;
     _getUserPhotoBusiness         = getUserPhotoBusiness;
 }
 public GetUserPhotoCommentsBusiness(IUserPhotoCommentRepository commentRepository)
 {
     _commentRepository = commentRepository;
 }
 public AddUserPhotoCommentBusiness(IUserPhotoCommentRepository commentRepository)
 {
     _commentRepository = commentRepository;
 }