Blame view

Vrh.iScheduler.Report/SRGlobal.cs 1007 Bytes
ab9f2fbe   Schwirg László   Add project files.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  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!!!!
  		};
      }
  }