Exemple #1
0
 public DragAction(Guid requestId, ImmutableAction action)
 {
     RequestId = requestId;
     Action = action;
 }
Exemple #2
0
 public ActionUpdated(
     ImmutableAction action, string projectUIKey)
 {
     Action       = action;
     ProjectUIKey = projectUIKey;
 }
Exemple #3
0
 public ActionAdded(ImmutableAction action)
 {
     Action = action;
 }
Exemple #4
0
 public ActionRemoved(ImmutableAction action)
 {
     Action = action;
 }
Exemple #5
0
 public ActionDisplay(ImmutableAction model, ProjectView controller)
 {
     Model = model;
     _controller = controller;
 }