public static string ToEthiopianShortDateString(this DateTime dateTime)
        {
            var ethiopianDate = new EthiopianDate(dateTime);

            return(ethiopianDate.ToShortDateString());
        }
        public static string ToEthiopianDateString(this DateTime dateTime, string format = "MMMM dd, yyyy")
        {
            var ethiopianDate = new EthiopianDate(dateTime);

            return(ethiopianDate.ToString(format));
        }