Example #1
0
        public void storageOperation(string Operation, string Calculation)
        {
            var headerValue = chekTrackingId();

            if (headerValue != null)
            {
                if (RegistryData.byId(headerValue) == null)
                {
                    RegistryData.addRegistry(headerValue);
                }

                RegistryData.addOperation(headerValue, Operation, Calculation);
            }
        }