private static void SetNonDefaultNamingConvention()
 {
     var namingConvention = new FakeConvention();
     AllClassesAutoMapper.PropNamingConvention = namingConvention;
     return;
 }
		private static INamingConventions SetFakeNameConvention()
		{
			INamingConventions nameConvention = new FakeConvention();
			AllClassesAutoMapper.PropNamingConvention = nameConvention;
			return nameConvention;
		}