using System.Globalization; using AutoMapper; namespace MileageTraker.Web.Utility { public class TitleCaseFormatter : ValueFormatter { protected override string FormatValueCore(string value) { return value.ToTitleCase(); } } }