public virtual void MapToServerObject(Server.Application.NoteType serverNoteType)
        {
            base.MapToServerObject((Server.Application.CoreConfigurationObject)serverNoteType);


            return;
        }
        public NoteType Copy()
        {
            Server.Application.NoteType serverNoteType = (Server.Application.NoteType)ToServerObject();

            NoteType copiedNoteType = new NoteType(application, serverNoteType);

            return(copiedNoteType);
        }
        public override Object ToServerObject()
        {
            Server.Application.NoteType serverNoteType = new Server.Application.NoteType();

            MapToServerObject(serverNoteType);

            return(serverNoteType);
        }
        protected void BaseConstructor(Application applicationReference, Server.Application.NoteType serverNoteType)
        {
            base.BaseConstructor(applicationReference, serverNoteType);

            return;
        }
        public NoteType(Application applicationReference, Server.Application.NoteType serverNoteType)
        {
            BaseConstructor(applicationReference, serverNoteType);

            return;
        }