Example #1
0
 public bool RemoveSignerType(PenneoConnector con, SignerType type)
 {
     return(UnlinkEntity(con, type));
 }
Example #2
0
 public bool RemoveSignerType(SignerType type)
 {
     return(UnlinkEntity(type));
 }
Example #3
0
 /// <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));
 }
Example #4
0
 public bool AddSignerType(SignerType type)
 {
     return(LinkEntity(type));
 }