Ejemplo n.º 1
0
 public HrbcAclUpdater(Func <List <AclSpec> > specFunc) : base((session, test) => UpdateAcl(specFunc())(session, test), UpdateAcl)
 {
 }
Ejemplo n.º 2
0
 private static async Task UpdateAcl(ISession <PrivateAuthentication> session, ITest test, List <AclSpec> data)
 {
     await UpdateAcl(data)(session, test);
 }
Ejemplo n.º 3
0
 public HrbcAclUpdater(Func <AclSpec> specFunc) : base((session, test) => UpdateAcl(new List <AclSpec> { specFunc() })(session, test), UpdateAcl)
 {
 }