Example #1
0
 private AccessCheck(IPhysicalAccessService physicalAccess, IClient client, IGlobalCost globalCost, bool hasActiveAccounts)
 {
     PhysicalAccess    = physicalAccess;
     Client            = client;
     GlobalCost        = globalCost;
     HasActiveAccounts = hasActiveAccounts;
 }
Example #2
0
 public static AccessCheck Create(IPhysicalAccessService physicalAccess, IClient client, IGlobalCost globalCost, bool hasActiveAccounts)
 {
     return(new AccessCheck(physicalAccess, client, globalCost, hasActiveAccounts));
 }