////////////////////////////////////////////////////////////////////////////////////////////////////////////
        ///
        /// Member functions of the class
        ///
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////

        #region Member Functions

        /// <summary>
        /// Purpose: Gets a person object to get all the Angebote of this person 
        /// </summary>
        /// <param name="person">Person to fill the controls with</param>
        public override void FillControls (BusinessLayer.Person person)
        {

            if (person == null)
                return;

            if (_person == null || person.ID != _person.ID) {
                _person = person;
                _transactions = person.GetPreTransactions( Language.GetLanguageCode(),ref  Application._user);
            }


        }