// ========================================================================
// Copyright 2007 - Volian Enterprises, Inc. All rights reserved.          
// Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE
// ------------------------------------------------------------------------
// $Workfile: $     $Revision: $                                           
// $Author: $   $Date: $                                                   
//                                                                         
// $History: $                                                             
// ========================================================================
using System;
using System.Data;
using System.Data.SqlClient;
using Csla;
using Csla.Data;
using System.Configuration;
using System.IO;
using System.ComponentModel;
using System.Collections.Generic;
using Csla.Validation;
namespace VEPROMS.CSLA.Library
{
    /// 
    ///	FormatFolder Generated by MyGeneration using the CSLA Object Mapping template
    /// 
    [Serializable()]
    [TypeConverter(typeof(FormatFolderConverter))]
    public partial class FormatFolder : BusinessBase, IVEHasBrokenRules, IDisposable
    {
        #region Log4Net
        private static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
        #endregion
        #region Business Methods
        private string _ErrorMessage = string.Empty;
        public string ErrorMessage
        {
            get { return _ErrorMessage; }
        }
        private int _FolderID;
        [System.ComponentModel.DataObjectField(true, true)]
        public int FolderID
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                if (_MyFolder != null) _FolderID = _MyFolder.FolderID;
                return _FolderID;
            }
        }
        private Folder _MyFolder;
        [System.ComponentModel.DataObjectField(true, true)]
        public Folder MyFolder
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                if (_MyFolder == null && _FolderID != 0) _MyFolder = Folder.Get(_FolderID);
                return _MyFolder;
            }
        }
        private int _ParentID;
        public int ParentID
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                if (_MyParent != null) _ParentID = _MyParent.FolderID;
                return _ParentID;
            }
        }
        private Folder _MyParent;
        public Folder MyParent
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                if (_MyParent == null && _ParentID != _FolderID) _MyParent = Folder.Get(_ParentID);
                return _MyParent;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (_MyParent != value)
                {
                    _MyParent = value;
                    _ParentID = value.FolderID;// Update underlying data field
                    PropertyHasChanged();
                }
            }
        }
        private int _DBID;
        public int DBID
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                if (_MyConnection != null) _DBID = _MyConnection.DBID;
                return _DBID;
            }
        }
        private Connection _MyConnection;
        public Connection MyConnection
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                if (_MyConnection == null && _DBID != 0) _MyConnection = Connection.Get(_DBID);
                return _MyConnection;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (_MyConnection != value)
                {
                    _MyConnection = value;
                    _DBID = value.DBID;// Update underlying data field
                    PropertyHasChanged();
                }
            }
        }
        private string _Name = string.Empty;
        public string Name
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Name;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (value == null) value = string.Empty;
                if (_Name != value)
                {
                    _Name = value;
                    PropertyHasChanged();
                }
            }
        }
        private string _Title = string.Empty;
        public string Title
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Title;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (value == null) value = string.Empty;
                if (_Title != value)
                {
                    _Title = value;
                    PropertyHasChanged();
                }
            }
        }
        private string _ShortName = string.Empty;
        public string ShortName
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _ShortName;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (value == null) value = string.Empty;
                if (_ShortName != value)
                {
                    _ShortName = value;
                    PropertyHasChanged();
                }
            }
        }
        private double? _ManualOrder;
        public double? ManualOrder
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _ManualOrder;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (_ManualOrder != value)
                {
                    _ManualOrder = value;
                    PropertyHasChanged();
                }
            }
        }
        private string _Config = string.Empty;
        public string Config
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Config;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (value == null) value = string.Empty;
                if (_Config != value)
                {
                    _Config = value;
                    PropertyHasChanged();
                }
            }
        }
        private DateTime _DTS = new DateTime();
        public DateTime DTS
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _DTS;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (_DTS != value)
                {
                    _DTS = value;
                    PropertyHasChanged();
                }
            }
        }
        private string _UsrID = string.Empty;
        public string UsrID
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _UsrID;
            }
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            set
            {
                if (value == null) value = string.Empty;
                if (_UsrID != value)
                {
                    _UsrID = value;
                    PropertyHasChanged();
                }
            }
        }
        private byte[] _LastChanged = new byte[8];//timestamp
        private string _Connection_Name = string.Empty;
        public string Connection_Name
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Connection_Name;
            }
        }
        private string _Connection_Title = string.Empty;
        public string Connection_Title
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Connection_Title;
            }
        }
        private string _Connection_ConnectionString = string.Empty;
        public string Connection_ConnectionString
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Connection_ConnectionString;
            }
        }
        private int _Connection_ServerType;
        /// 
        /// 0 SQL Server
        /// 
        public int Connection_ServerType
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Connection_ServerType;
            }
        }
        private string _Connection_Config = string.Empty;
        public string Connection_Config
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Connection_Config;
            }
        }
        private DateTime _Connection_DTS = new DateTime();
        public DateTime Connection_DTS
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Connection_DTS;
            }
        }
        private string _Connection_UsrID = string.Empty;
        public string Connection_UsrID
        {
            [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
            get
            {
                return _Connection_UsrID;
            }
        }
        // CSLATODO: Check FormatFolder.GetIdValue to assure that the ID returned is unique
        /// 
        /// Overrides Base GetIdValue - Used internally by CSLA to determine equality
        /// 
        /// A Unique ID for the current FormatFolder
        protected override object GetIdValue()
        {
            return MyFormatFolderUnique; // Absolutely Unique ID
        }
        // CSLATODO: Replace base FormatFolder.ToString function as necessary
        /// 
        /// Overrides Base ToString
        /// 
        /// A string representation of current FormatFolder
        //public override string ToString()
        //{
        //  return base.ToString();
        //}
        public override bool IsDirty
        {
            get
            {
                if (base.IsDirty)
                    return true;
                return IsDirtyList(new List