public DeleteUserPhotoCommentBusiness( IUserPhotoCommentRepository commentRepository, IGetUserPhotoCommentsBusiness getUserPhotoCommentsBusiness, IGetUserPhotoBusiness getUserPhotoBusiness ) { _commentRepository = commentRepository; _getUserPhotoCommentsBusiness = getUserPhotoCommentsBusiness; _getUserPhotoBusiness = getUserPhotoBusiness; }
public DeleteUserPhotoBusiness(IUserPhotoRepository photoRepository, IGetUserPhotoBusiness getPhoto) { _photoRepository = photoRepository; _getPhoto = getPhoto; }
public UserPhotosQuery(IGetListUserPhotosBusiness getListPhotos, IGetUserPhotoBusiness getUserPhoto) { _getListPhotos = getListPhotos; _getUserPhoto = getUserPhoto; }