Mercurial > pub > ImplabNet
view Implab/Components/IServiceLocator.cs @ 277:963b17c275be v3
Refactoring
Added <array> element to injection parameters
Working on registrations of factories
author | cin |
---|---|
date | Sat, 28 Apr 2018 18:48:09 +0300 |
parents | 9f63dade3a40 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Implab.Components { public interface IServiceLocator: IServiceProvider { T GetService<T>(); bool TryGetService<T>(out T service); bool TryGetService (Type serviceType, out object service); } }