public RequestResult <List <GalleryModel> > GetParticipantPhotoGallery(string sessionToken, Guid?UserId)
 {
     try
     {
         return(_repository.GetParticipantPhotoGallery(sessionToken, UserId));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }