BF2Statistics.ASP.StatsProcessor.AwardCriteria.AwardCriteria C# (CSharp) Метод

AwardCriteria() публичный Метод

Constructor.
public AwardCriteria ( string Table, string Field, int ExpectedResult, string Where )
Table string The table name
Field string The field (column name)
ExpectedResult int /// The expected result. If the result matches this result, /// the criteria is considered met ///
Where string The where statement when running the query
        public AwardCriteria(string Table, string Field, int ExpectedResult, string Where)
        {
            this.Table = Table;
            this.Field = Field;
            this.ExpectedResult = ExpectedResult;
            this.Where = Where;
        }
AwardCriteria