public static Type GetPdfRptColumnCustomAggregateFunctionAttribute(this MemberInfo info)
{
var aggregateFunctionType = info.GetCustomAttributes(true).OfType<CustomAggregateFunctionAttribute>().FirstOrDefault();
if (aggregateFunctionType == null) return null;
return aggregateFunctionType.AggregateFunctionType;
}