public static ServiceKey CreateKeyFor(ServiceInstance container, string method)
 {
     return(ServiceKey.Create($"{container.Key}_{method}"));
 }
Exemplo n.º 2
0
 public ClassServiceInstance(object instance) : base(null, ServiceKey.Create(instance.GetType().FullName))
 {
     Instance = instance;
 }