using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class Helpers
{
public static string ConvertToSentenceCase(string source)
{
return source.Substring(0, 1).ToUpper() + source.Substring(1);
}
}