Files
MileageTraker/Web/Utility/TitleCaseFormatter.cs
T
2015-09-09 22:45:27 -04:00

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();
}
}
}