Example #1
0
 public bool ApproveOwnershipRequest(int requestID)
 {
     if (!loggedIn)
     {
         notLoggedInException();
     }
     return(UserService.ApproveOwnershipRequest(user, requestID));
 }