using System.Collections.Generic; namespace TINK.Services { public interface IServicesContainer : IEnumerable { /// Get the active service. T Active { get; } /// Sets service as active service by name. /// Name of the new service obecs. void SetActive(string active); } }