public void LoadPlantilla()
        {
            try
            {
                COCASJOL.LOGIC.Utiles.PlantillaLogic       plantillalogic = new LOGIC.Utiles.PlantillaLogic();
                COCASJOL.DATAACCESS.plantilla_notificacion pl             = plantillalogic.GetPlantilla(EstadoNotaDePesoLogic.PREFIJO_PLANTILLA + this.EditLlaveTxt.Text);

                this.EditMensajeTxt.Text = pl == null ? "" : pl.PLANTILLAS_MENSAJE;
            }
            catch (Exception ex)
            {
                log.Fatal("Error fatal al cargar plantilla de notificacion de estado de nota de peso.", ex);
                throw;
            }
        }
        public void LoadPlantilla()
        {
            try
            {
                COCASJOL.LOGIC.Utiles.PlantillaLogic plantillalogic = new LOGIC.Utiles.PlantillaLogic();
                COCASJOL.DATAACCESS.plantilla_notificacion pl = plantillalogic.GetPlantilla(EstadoNotaDePesoLogic.PREFIJO_PLANTILLA + this.EditLlaveTxt.Text);

                this.EditMensajeTxt.Text = pl == null ? "" : pl.PLANTILLAS_MENSAJE;
            }
            catch (Exception ex)
            {
                log.Fatal("Error fatal al cargar plantilla de notificacion de estado de nota de peso.", ex);
                throw;
            }
        }