public URLConfigurationController(IConfigurationDBUnitOfWork configurationDBUnitOfWork, ILoggingServices loggingServices)
        {
            _configurationDBUnitOfWork = configurationDBUnitOfWork;

            #region Template
            _loggingServices = loggingServices;
            logModel         = new LogModel();
            userScopesModel  = new UserScopesModel(HttpContext);
            logModel.SetModel(userScopesModel.Subject.ToString(), userScopesModel.Name, nameof(URLConfigurationController), ApplicationNames.ConfigurationServer, LogTypeEnum.Info);
            #endregion
        }