public bool RemoveSignerType(PenneoConnector con, SignerType type) { return(UnlinkEntity(con, type)); }
public bool RemoveSignerType(SignerType type) { return(UnlinkEntity(type)); }
/// <summary> /// Associate a signer type, if you need more control over this, create a SignerTypeMap directly instead of using /// this method. /// </summary> /// <param name="con"></param> /// <param name="type"></param> /// <returns></returns> public bool AddSignerType(PenneoConnector con, SignerType type) { return(LinkEntity(con, type)); }
public bool AddSignerType(SignerType type) { return(LinkEntity(type)); }