public bool DelUser(Credentials c) { var cl = new Ref.FileSyncModelClient(); try { bool result = false; result = cl.DelUser(c); cl.Close(); return(result); } catch (Exception ex) { cl.Abort(); throw new ActionException("Unable to delete the user account.", ActionType.User, ex); } }