Exemple #1
0
 public void Add(TnfSecondaryLrsIdentity tnfSecondaryLrsIdentity)
 {
     Add(new object[]
     {
         tnfSecondaryLrsIdentity.LrsOid,
         tnfSecondaryLrsIdentity.IdentityPropertyOid
     });
 }
Exemple #2
0
        private static TnfSecondaryLrsIdentity ReadObject(IDataRecord reader)
        {
            var tnfSecondaryLrsIdentity = new TnfSecondaryLrsIdentity();

            tnfSecondaryLrsIdentity.LrsOid = reader["lrs_oid"].FromDbString();
            tnfSecondaryLrsIdentity.IdentityPropertyOid = reader["identity_property_oid"].FromDbString();

            return(tnfSecondaryLrsIdentity);
        }