예제 #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();
 }