using System.Collections.Generic; namespace Pinwheel { public interface IRulesService { void RegisterRule() where T : IAwardRule; IEnumerable GetRules(); } }