-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for richer Added/Removed events on collections and cont…
…ainers. #50
- Loading branch information
Showing
12 changed files
with
270 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace NuPattern | ||
{ | ||
// ISolutionViewModel | ||
// event ElementActivated; | ||
// event CollectionChanged (index, added/removed, etc.) | ||
|
||
public interface IWarehouse | ||
{ | ||
// event ElementCreated; -> Traverse(tree) -> nodo.Remove(); | ||
// event ElementDeleted; | ||
// event ElementDeleting; | ||
// event ElementInstantiated; | ||
// event ElementLoaded; | ||
// event ElementPropertyChanged; | ||
// Collection.Items prop? | ||
// Container.Elements ? | ||
// event CollectionChanged ? | ||
|
||
// ctor(IElement) => propertychanged (port) -> IIS configure | ||
// IElement.PropertyChanged. | ||
// IWebService | ||
// PropertyChanged("Storage") | ||
// Changed("Items") -> Changed("Buckets") | ||
// IStorage Storage | ||
// PropertyChanged("Name") | ||
// Name { get; set; } | ||
// IBuckets Buckets -> Changed("Items") | ||
// IBucket[0].Port -> Changed("Port") | ||
|
||
// Open(storeFile); | ||
// SaveAll(); | ||
// CloseAll(); | ||
|
||
|
||
IEnumerable<IProductStore> Stores { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.