13 lines
285 B
C#
13 lines
285 B
C#
using System.Globalization;
|
|
using AutoMapper;
|
|
|
|
namespace MileageTraker.Web.Utility
|
|
{
|
|
public class TitleCaseFormatter : ValueFormatter<string>
|
|
{
|
|
protected override string FormatValueCore(string value)
|
|
{
|
|
return CultureInfo.CurrentCulture.TextInfo.ToTitleCase(value);
|
|
}
|
|
}
|
|
} |