protected void Show_EventMsg(List <String> Msg, ClsBaseMasterDetails.eStatus Status)
        {
            StringBuilder Sb = new StringBuilder();

            foreach (String St in Msg)
            {
                Sb.Append(St + @"<br />");
            }

            this.Show_EventMsg(Sb.ToString(), Status);
        }
 protected void Show_EventMsg(string Msg, ClsBaseMasterDetails.eStatus Status)
 {
     this.mMaster.Show_EventMsg(Msg, Status);
 }