using System.Collections.Generic; namespace AyaNova.Api.ControllerHelpers { internal static class ImportModeFromContext { internal static bool ImportMode(IDictionary HttpContextItems) { return HttpContextItems["AY_IMPORT_MODE"] != null; } } }//eons