using System.Collections.Generic; namespace Analizator9000 { /// /// Interface for board scoring utilities /// interface IScorer { /// /// Main method, takes dictionary of contract scores and calculates board scores for each contract /// /// Dictionary of scored contracts /// Dictionary containing board scores for each contract Dictionary scoreBoard(Dictionary scores); } }