Initial Commit
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
namespace Zenject
|
||||
{
|
||||
[NoReflectionBaking]
|
||||
public class ConcreteIdBinderGeneric<TContract> : ConcreteBinderGeneric<TContract>
|
||||
{
|
||||
public ConcreteIdBinderGeneric(
|
||||
DiContainer bindContainer, BindInfo bindInfo,
|
||||
BindStatement bindStatement)
|
||||
: base(bindContainer, bindInfo, bindStatement)
|
||||
{
|
||||
}
|
||||
|
||||
public ConcreteBinderGeneric<TContract> WithId(object identifier)
|
||||
{
|
||||
BindInfo.Identifier = identifier;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user