예제 #1
0
 public UserRoomRestriction(UserRestrictionType restrictionType, bool isPermanent, DateTime?effectiveTo, AuditInfo created, AuditInfo updated)
 {
     RestrictionType = restrictionType;
     IsPermanent     = isPermanent;
     EffectiveTo     = effectiveTo;
     Created         = created;
     Updated         = updated;
 }
예제 #2
0
 public UserRoomRestrictionBuilder WithRestrictionType(UserRestrictionType restrictionType)
 {
     _restrictionType = restrictionType;
     return(this);
 }