示例#1
0
        /// <summary>
        /// Sets the members of the class instance with data from the data layer framework.
        /// </summary>
        internal virtual void SetMembers(ref AliasBase data)
        {
            // store a reference to this as an Entity class instance.
            Entity thisent = data as Entity;

            // make sure to always call up to the base
            base.SetMembers(ref thisent);


            // assigns the Id data to the class member
            _id = data._id;
            // assigns the BorrowerId data to the class member
            _borrowerid        = data._borrowerid;
            _borrowerid_isnull = data._borrowerid_isnull;
            // assigns the FirstName data to the class member
            _firstname = data._firstname;
            // assigns the LastName data to the class member
            _lastname = data._lastname;
            // assigns the MiddleName data to the class member
            _middlename = data._middlename;


            RecalculateChecksum();
        }
示例#2
0
        /// <summary>
        /// Sets the members of the class instance with data from the data layer framework.
        /// </summary>
        internal virtual void SetMembers(ref AliasBase data)
        {
            // store a reference to this as an Entity class instance.
            Entity thisent = data as Entity;
            // make sure to always call up to the base
            base.SetMembers(ref thisent);

            // assigns the Id data to the class member
            _id = data._id;
            // assigns the BorrowerId data to the class member
            _borrowerid = data._borrowerid;
            _borrowerid_isnull = data._borrowerid_isnull;
            // assigns the FirstName data to the class member
            _firstname = data._firstname;
            // assigns the LastName data to the class member
            _lastname = data._lastname;
            // assigns the MiddleName data to the class member
            _middlename = data._middlename;

            RecalculateChecksum();
        }
示例#3
0
 /// <summary>
 /// Removes an object instance from the current collection set of items.
 /// </summary>
 public virtual void Remove(AliasBase aliasBase)
 {
     InnerRemove(aliasBase);
 }
示例#4
0
 /// <summary>
 /// Adds a new object instance to the current collection set.
 /// </summary>
 public virtual int Add(AliasBase aliasBase)
 {
     return InnerAdd(aliasBase);
 }
示例#5
0
 /// <summary>
 /// Removes an object instance from the current collection set of items.
 /// </summary>
 public virtual void Remove(AliasBase aliasBase)
 {
     InnerRemove(aliasBase);
 }
示例#6
0
 /// <summary>
 /// Adds a new object instance to the current collection set.
 /// </summary>
 public virtual int Add(AliasBase aliasBase)
 {
     return(InnerAdd(aliasBase));
 }