Exemple #1
0
 public Store(string storeName, string description)
 {
     this.storeID     = DBStore.getNextStoreID();
     this.storeName   = storeName;
     this.description = description;
     productList      = new LinkedList <Product>();
     roles            = new List <StoreRole>();
     numOfOwners      = 0;
     active           = true;
 }