示例#1
0
 private void OnScopeValueChanged(Entity.ClientScope scope)
 {
     Model.AllowedScopes.Add(scope);
     _scope = new Entity.ClientScope();
     scope.Id = Guid.NewGuid().ToString();
     HandleModificationState.EntityCreated(scope);
 }
示例#2
0
 private void OnScopeDeleted(Entity.ClientScope scope)
 {
     Model.AllowedScopes.Remove(scope);
     HandleModificationState.EntityDeleted(scope);
 }
示例#3
0
 private void OnScopeDeleted(Entity.ClientScope scope)
 {
     Model.AllowedScopes.Remove(scope);
     EntityDeleted(scope);
     StateHasChanged();
 }
示例#4
0
 private void OnScopeValueChanged(Entity.ClientScope scope)
 {
     EntityCreated(scope);
     Model.AllowedScopes.Add(new Entity.ClientScope());
     StateHasChanged();
 }