mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 03:01:46 +03:00
IoC and NavigationService implementation
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace MicroIoc
|
||||
{
|
||||
public class InjectedProperty<T> : InjectedMemberBase
|
||||
{
|
||||
public InjectedProperty(string name, T value)
|
||||
{
|
||||
MemberName = name;
|
||||
MemberValue = value;
|
||||
}
|
||||
|
||||
public override string DeriveFullName<TClass>()
|
||||
{
|
||||
return typeof(TClass).PropertyPattern(MemberName);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user