diff --git a/Syrette/ServiceContainer.cs b/Syrette/ServiceContainer.cs index 06cc528..a32afc1 100644 --- a/Syrette/ServiceContainer.cs +++ b/Syrette/ServiceContainer.cs @@ -14,7 +14,7 @@ public class ServiceContainer { /// /// /// - public List GetServices() => + public List GetServiceTypes() => descriptors.Where(d => d.ServiceType == typeof(TServices)) .Select(d => d.ImplementationType).ToList();