Beispiel #1
0
        /// <summary>
        /// Sets the members of the class instance with data from the data layer framework.
        /// </summary>
        internal virtual void SetMembers(ref PurchaseCreditBase 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 Amount data to the class member
            _amount        = data._amount;
            _amount_isnull = data._amount_isnull;
            // assigns the SourceType data to the class member
            _sourcetype        = data._sourcetype;
            _sourcetype_isnull = data._sourcetype_isnull;
            // assigns the LoanApplicationId data to the class member
            _loanapplicationid          = data._loanapplicationid;
            _loanapplicationid_assigned = data._loanapplicationid_assigned;
            // assigns the Type data to the class member
            _type        = data._type;
            _type_isnull = data._type_isnull;


            RecalculateChecksum();
        }
        /// <summary>
        /// Sets the members of the class instance with data from the data layer framework.
        /// </summary>
        internal virtual void SetMembers(ref PurchaseCreditBase 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 Amount data to the class member
            _amount = data._amount;
            _amount_isnull = data._amount_isnull;
            // assigns the SourceType data to the class member
            _sourcetype = data._sourcetype;
            _sourcetype_isnull = data._sourcetype_isnull;
            // assigns the LoanApplicationId data to the class member
            _loanapplicationid = data._loanapplicationid;
            _loanapplicationid_assigned = data._loanapplicationid_assigned;
            // assigns the Type data to the class member
            _type = data._type;
            _type_isnull = data._type_isnull;

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