SRGlobal.cs 1007 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using VRH.Common;

namespace Vrh.iScheduler.Report
{
    /// <summary>
    /// A modul számára hasznos statikus összetevők.
    /// </summary>
    public static class SRGlobal
    {
        /// <summary>
        /// Az objektumokon elvégezhető műveletek szótára.
        /// Azért szótár, hogy még véletlenül se legyen azonos kulcs.
        /// </summary>
        public static readonly Dictionary<string, string> Operations = new Dictionary<string, string>
        {
			{ SRConstants.Operations.EXECUTE_KEY, SRConstants.Operations.EXECUTE_TEXT },
			//{ SRConstants.Operations.FILEREPORT_KEY, SRConstants.Operations.FILEPORT_TEXT },
			//{ SRConstants.Operations.EXPORTDATA_KEY, SRConstants.Operations.EXPORTDATA_TEXT },
			//{ SRConstants.Operations.FILEOREXPORT_KEY, SRConstants.Operations.FILEOREXPORT_TEXT},// ez igazában csak a teszt miatt van itt!!!!
		};
    }
}