Example #1
0
        public TreeTypeDTO[] GetTreeTypes()
        {
            TreeTypeMaster oTreeTypeMaster;

            oTreeTypeMaster = new TreeTypeMaster();
            return(oTreeTypeMaster.GetTreeTypes());
        }
Example #2
0
        public void SetDefaultTreeType(int TreeTypeId)
        {
            TreeTypeMaster oTreeTypeMaster;

            oTreeTypeMaster = new TreeTypeMaster();
            oTreeTypeMaster.SetDefaultTree(TreeTypeId);
        }
Example #3
0
        public string GetDefaultTreeType()
        {
            TreeTypeMaster oTreeTypeMaster = null;
            TreeTypeDTO    oTreeTypeData   = null;

            try
            {
                oTreeTypeMaster = new TreeTypeMaster();
                oTreeTypeData   = oTreeTypeMaster.GetDefaultTreeType();
            }
            catch (Exception exp)
            {
                throw exp;
            }
            return(oTreeTypeData.TreeType);
        }