21 lines
531 B
C#
21 lines
531 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
|