Exemplo n.º 1
0
 /// <summary>
 /// Deletes a subscriber but leaves the location
 /// Caller will be responsible for handling exceptions thrown
 /// </summary>
 /// <returns>A boolean that says whether the subscriber was successfully deleted</returns>
 public bool DeleteSubscriberLeaveLocation(SubscriberDto subscriber)
 {
     using (RosettianClient rc = new RosettianClient())
     {
         Thread.Sleep(200);
         rc.DeleteSubscriber(subscriber, CurrentUser.AsUserDto());
         return true;
     }
 }