using Tanshu.Accounts.Entities; using Tanshu.Accounts.Contracts; namespace Tanshu.Common.Helpers { public static class EnumHelper { public static string Display(this SettleOption settleOption) { var attribute = (DisplayAttribute)settleOption.GetType().GetField(settleOption.ToString()).GetCustomAttributes(typeof(DisplayAttribute), false)[0]; return attribute != null ? attribute.Name : ""; } public static bool Visible(this SettleOption settleOption) { var attribute = (DisplayAttribute)settleOption.GetType().GetField(settleOption.ToString()).GetCustomAttributes(typeof(DisplayAttribute), false)[0]; return attribute != null ? attribute.ShowInChoices : false; } public static DisplayAttribute Attribute(this SettleOption settleOption) { var attribute = (DisplayAttribute)settleOption.GetType().GetField(settleOption.ToString()).GetCustomAttributes(typeof(DisplayAttribute), false)[0]; return attribute; } public static DisplayAttribute Attribute(this VoucherType settleOption) { var attribute = (DisplayAttribute)settleOption.GetType().GetField(settleOption.ToString()).GetCustomAttributes(typeof(DisplayAttribute), false)[0]; return attribute; } } }