public MailboxPersistence() : base( 1 )
		{
			Movable = false;

			if ( m_Instance == null || m_Instance.Deleted )
				m_Instance = this;
			else
				base.Delete();
		}
        public MailboxPersistence() : base(1)
        {
            Movable = false;

            if (m_Instance == null || m_Instance.Deleted)
            {
                m_Instance = this;
            }
            else
            {
                base.Delete();
            }
        }
 public MailboxPersistence(Serial serial) : base(serial)
 {
     m_Instance = this;
 }
		public MailboxPersistence( Serial serial ) : base( serial )
		{
			m_Instance = this;
		}