示例#1
0
文件: Lists.cs 项目: wtf3505/home
 public Lists(IAddDelegates add) => _add = add;
示例#2
0
 public ReadOnlyCollectionSpecification(IAddDelegates add)
     : base(new MemberTypeSpecification(IsCollectionTypeSpecification.Default.And(add.IfAssigned())))
 {
 }
示例#3
0
 public ReadOnlyCollectionAccessors(IAllowedMemberValues allowed, IGetterFactory getter, IAddDelegates add)
 {
     _allowed = allowed;
     _getter  = getter;
     _add     = add;
 }