public int Count(ITable table, string whereClause) { return(CustomStatisticClass.Count(table, whereClause)); }
public object Min(ITable table, string fieldName, string whereClause) { return(CustomStatisticClass.Min(table, fieldName, whereClause)); }
public double Sum(ITable table, string fieldName, string whereClause) { return(CustomStatisticClass.Sum(table, fieldName, whereClause)); }
public object Min(string fieldName, string whereClause) { return(CustomStatisticClass.Min(this.OriginalObject as ITable, fieldName, whereClause)); }
public object[] Unique(string fieldName, string whereClause) { return(CustomStatisticClass.Unique(FeatureClass as ITable, fieldName, whereClause)); }