Example #1
0
        public Shop(int id, string name, string adr, string supplyList)
        {
            ShopId   = id;
            ShopName = name;
            Adress   = adr;
            AddPriceList newPriceList = new AddPriceList();

            Products = newPriceList.SetPriceList(supplyList);
        }