public static string GetTodayWithDateFormat(string format)
        {
            var selfObject = new TimeFormatter();

            return(selfObject._getDateWithDateFormat(format));
        }
        public static string GetTodayYear()
        {
            var selfObject = new TimeFormatter();

            return(selfObject._getDateWithDateFormat("yyyy"));
        }