protected bool GET_MSG(string messageID, out string message1, out string message2, out string message3)
        {
            Message_BL  message_bl = new Message_BL();
            SMSG_Entity smsg_data  = new SMSG_Entity();

            smsg_data.MSGID = messageID.Substring(1);
            smsg_data.MSGSB = messageID.Substring(0, 1);
            return(message_bl.SMSG_Select(smsg_data, out message1, out message2, out message3));
        }
        public string GetMessage([FromBody] MessageModel Mmodel)
        {
            if (Mmodel == null)
            {
                Mmodel = new MessageModel();
            }
            Message_BL msgBL = new Message_BL();

            return(msgBL.M_Message_Select(Mmodel));
        }
        static void InsertErrorLog(string errormsg)
        {
            Message_BL mes_bl = new Message_BL();

            mes_bl.INSERT_ErrorTable(errormsg, "PSKS0106B");
        }