/// <summary>
        /// Method to load the doctors note document for the user
        /// </summary>
        /// <param name="user">This is the user that the doctors note document will be loaded from</param>
        public void LoadDoctorsNote(User user)
        {
            SetType(Session.TypeDoctorsNote);
            string notePath = DatabaseParser.GetDoctorsNote(user);

            if (!String.IsNullOrEmpty(notePath))
            {
                LoadDocument(notePath);
            }
        }