public GetUserPhotoBusiness(
     IUserPhotoRepository userPhotoRepository,
     IGetUserPhotoCommentsBusiness getUserPhotoCommentsBusiness,
     IGetLikesPhotoBusiness getLikesPhotoBusiness
     )
 {
     _userPhotoRepository          = userPhotoRepository;
     _getUserPhotoCommentsBusiness = getUserPhotoCommentsBusiness;
     _getLikesPhotoBusiness        = getLikesPhotoBusiness;
 }
 public GetListUserPhotosBusiness(
     IUserPhotoRepository photoRepository,
     IContactRepository contactRepository,
     IGetContactBusiness getContactBusiness,
     IGetLikesPhotoBusiness getLikesPhotoBusiness
     )
 {
     _photoRepository       = photoRepository;
     _contactRepository     = contactRepository;
     _getContactBusiness    = getContactBusiness;
     _getLikesPhotoBusiness = getLikesPhotoBusiness;
 }
 public DeleteLikesPhotoBusiness(ILikesPhotoRepository likesPhotoRepository, IGetLikesPhotoBusiness getLikesPhotoBusiness)
 {
     _likesPhotoRepository  = likesPhotoRepository;
     _getLikesPhotoBusiness = getLikesPhotoBusiness;
 }