Esempio n. 1
0
        /// <summary>
        /// Returns the organisation name
        /// </summary>
        public string GetRelType(int relTypeID)
        {
            LightSpeedRepository repository = new LightSpeedRepository(GetAppSettings());

            RelationshipType _reltype;

            _reltype = repository.GetRelTypeByID(relTypeID);

            return(_reltype.relTypeText);
        }