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