Nimbus.Infrastructure.PathFactory.PathFactory C# (CSharp) Method

PathFactory() public method

public PathFactory ( GlobalPrefixSetting globalPrefix ) : System
globalPrefix GlobalPrefixSetting
return System
        public PathFactory(GlobalPrefixSetting globalPrefix)
        {
            _globalPrefix = (globalPrefix.Value == string.Empty)
                ? string.Empty
                : $"{globalPrefix.Value}.";
        }