/// <summary>
        /// Sets the members of the class instance with data from the data layer framework.
        /// </summary>
        internal virtual void SetMembers(ref PresentHousingExpenseBase 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_assigned = data._borrowerid_assigned;
            // assigns the PaymentAmount data to the class member
            _paymentamount          = data._paymentamount;
            _paymentamount_assigned = data._paymentamount_assigned;
            // assigns the HousingExpenseType data to the class member
            _housingexpensetype          = data._housingexpensetype;
            _housingexpensetype_assigned = data._housingexpensetype_assigned;


            RecalculateChecksum();
        }
 /// <summary>
 /// Removes an object instance from the current collection set of items.
 /// </summary>
 public virtual void Remove(PresentHousingExpenseBase presentHousingExpenseBase)
 {
     InnerRemove(presentHousingExpenseBase);
 }
 /// <summary>
 /// Adds a new object instance to the current collection set.
 /// </summary>
 public virtual int Add(PresentHousingExpenseBase presentHousingExpenseBase)
 {
     return(InnerAdd(presentHousingExpenseBase));
 }