Mercurial > pub > ImplabNet
diff Implab/IServiceLocator.cs @ 69:48763f3b5db8
service locator refactoring
author | cin |
---|---|
date | Thu, 28 Aug 2014 19:38:39 +0400 |
parents | fe33f4e02ad5 |
children |
line wrap: on
line diff
--- a/Implab/IServiceLocator.cs Thu Aug 28 02:28:00 2014 +0400 +++ b/Implab/IServiceLocator.cs Thu Aug 28 19:38:39 2014 +0400 @@ -8,5 +8,6 @@ public interface IServiceLocator: IServiceProvider { T GetService<T>(); bool TryGetService<T>(out T service); + bool TryGetService (Type serviceType, out object service); } }