Exemple #1
0
 public Store(StoreId id, string name, bool isDeleted, IEnumerable <IStoreSection> sections)
 {
     Id            = id;
     Name          = name;
     IsDeleted     = isDeleted;
     this.sections = new StoreSections(sections);
 }
Exemple #2
0
 public void UpdateStores(IEnumerable <IStoreSection> storeSections)
 {
     sections = new StoreSections(storeSections);
 }