public string Shout(string localUrlPath)
        {
            string physicalPath = _mapper.Map(localUrlPath);
            string content      = File.ReadAllText(physicalPath);

            return(content.ToUpper() + "!");
        }